Wine-devel
Threads by month
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
July 2022
- 51 participants
- 452 discussions
Hi,
TL;DR: for the past few weeks, I've been trying to implement the necessary
changes to get games with DualSense support to properly work with Wine. While
I have made significant progress (I got a few patches merged that should make
a small portion of games work properly, and I wrote a few more experimental
patches that make most features work in most games), I do not think I can
finish this work, or at least not without significant help. This mail contains
details about the DualSense controller features, technical details about how
they are used in games, and discusses implementation ideas.
The DualSense controller is the Playstation 5 controller, which provides
multiple specific features, including:
- Adaptive triggers, a technology to basically let games dynamically alter the
resistance of the triggers
- Haptic feedback based on Voice Coil Motors
- an onboard speaker
Some Windows games offer support for these features when the controller is
plugged into USB (the controller itself also offers these features wirelessly,
but this involves more ad-hoc complicated protocols that I have seen no
documentation on, and are, to my knowledge, not fully supported in any other
context that on the PS5 itself).
Adaptive triggers is controlled by HID output reports, so this already works
under Wine.
VCM-based haptics and the onboard speaker work by outputing sound to an USB
audio device made available alongside the HID device. That device exposes 4
channels, with the back channels being used for the VCM-based haptics, and
the front channels used both for the (mono) speaker and the audio jack.
Different games use different methods to find that audio device for different
purposes, and that generally does not work on Wine.
I have tried understanding how a few different games find the audio device,
and here are my finding:
- Final Fantasy XIV Online finds the device by enumerating devices through
MMDevAPI and filtering on their FriendlyName property, selecting the first
that contains “Wireless Controller”. This device is then used for a stream
that is used both for the speaker output and the VCM-based haptic feedback.
- Final Fantasy VII Remake Intergrade finds the device the same way and uses
it for the VCM-based haptic feedback (to my knowledge, it does not make use
of the speaker).
- Ghostwire: Tokyo first uses SetupApi to retrieve the HID device's containerID
(specifically, it calls `SetupDiGetDeviceRegistryPropertyW` with a value of
`36` for `PropertyValue`). Then, it enumerates audio outputs through
MMDevAPI and filters on their containerID property. It selects the first one
that matches and uses it to open a stream for VCM-based haptic feedback.
To my knowledge, it does not use the speaker (although I have read it does
use it on PS5).
- Deathloop selects the audio device the same way as Ghostwire: Tokyo for the
VCM-based haptic feedback. But it also opens a second stream for use with the
speaker. I have not figured out how it does so yet, but it involves
enumerating DEVINTERFACE_AUDIO_RENDER interfaces through SetupApi. If the
audio device cannot be found this way, the stream is opened on the default
audio output instead.
I expect Deathloop and Ghostwire: Tokyo to be representative of the majority
of games with DualSense support, since they use the Wwise audio engine, which
seems to be pushed by Sony and be the preferred audio engine for PS5 games.
I have tried summing up and replicating these API calls in a short program that
can be used to test Wine's compatibility without running or owning any of these
games (it requires a DualSense controller to be plugged through USB, though):
https://github.com/ClearlyClaire/dualsense-games-compat-check
I also have recently submitted patches that should be enough for FF14 and FF7R:
- https://gitlab.winehq.org/wine/wine/-/merge_requests/338
- https://gitlab.winehq.org/wine/wine/-/merge_requests/337
I have also written patches that are enough to get VCM-based haptics to work in
Ghostwire: Tokyo and Deathloop:
- https://gitlab.winehq.org/wine/wine/-/merge_requests/359
- https://gitlab.winehq.org/wine/wine/-/merge_requests/360
- https://github.com/ClearlyClaire/wine/commit/52678e2cc77d0ad1a28649005f2745…
This last set of patches however exhibit a few issues, mainly:
- code duplication
- containerID is generated very crudely from low entropy instead of being a
proper GUID
- more importantly, the ContainerID being based entirely on the sysfs path
means it will end up being re-used across devices plugged in the same port
at different times. No two plugged-in devices will share the containerID,
but a plugged-in device may share one with devices that are not plugged in
anymore. This may actually be an issue, because the MMDevAPI device
enumeration performed by Deathloop and Ghostwire: Tokyo also lists
unavailable devices. I haven't checked, however, if it stops at the first
matching device regardless of availability, or continues enumerating if
the first device ends up being unavailable.
Attributing containerIDs the same exact way Windows does[1] is probably
unreasonably complex, as it would basically entail representing every USB
hub in the device tree.
An alternative that has been suggested is have Winebus walk the sysfs and
expose sibling audio devices whenever adding a HID device. Winebus would be
responsible for attributing the same ContainerID to those devices, and MMDevAPI
or another component would subsequently match these devices with audio-driver
exposed ones and expose the DEVINTERFACE_AUDIO_RENDER interface to SetupAPI.
This would also likely help, if not be sufficient, to get Deathloop to open
the appropriate audio device for the speaker output.
However, I have spent a few hours trying to do that and I'm getting nowhere.
Here are thoughts regarding what would be needed to achieve that:
- refactor Winebus to expose other kind of devices than HID devices.
This seems like a lot of work and I don't think I have a firm enough grasp on
how winebus or the driver stack works to do that.
- in bus_udev.c, walk the sysfs to get sibling audio devices and queue them
for addition. This is fairly easy, and I have drafted code for that.
- presumably in bus_udev.c, generate a containerID for the HID device and
its siblings. One difficulty is that `bus_udev.c` is part of the unixlib
and thus does not have access to CoCreateGuid as far as I know.
It might also be possible to make the audio devices subdevices of the HID
device and have them inherit the containerID. This doesn't replicate the
real device hierarchy but it might work.
- somehow make the sysfs path of the audio device available to SetupAPI
users. I don't think I have a good enough grasp on how everything works to
know how to do that.
- probably need to remove the audio devices when the sibling HID device is
removed
- somehow make the MMDevice sysfs path available somewhere
- have something match the MMDevAPI devices with the winebus ones (based on
sysfs), copy the containerID from SetupAPI to the MMDevice store, create
a SetupAPI subdevice with the proper instance ID and expose the AudioRender
interface.
I'm not sure what component should do that, and I don't understand Wine's
architecture enough to extend an existing component to do that or create a
new one, to be honest.
[1]: https://docs.microsoft.com/en-us/windows-hardware/drivers/install/how-conta…
1
0
Re: [PATCH v8 1/1] riched20/tests: Test for ITextDocument::Undo and ITextDocument::Redo.
by Marvin 09 Jul '22
by Marvin 09 Jul '22
09 Jul '22
Hi,
It looks like your patch introduced the new failures shown below.
Please investigate and fix them before resubmitting your patch.
If they are not new, fixing them anyway would help a lot. Otherwise
please ask for the known failures list to be updated.
The full results can be found at:
https://testbot.winehq.org/JobDetails.pl?Key=118629
Your paranoid android.
=== w7u_2qxl (32 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w7u_adm (32 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w7u_el (32 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w8 (32 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w8adm (32 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w864 (32 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w1064v1507 (32 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w1064v1809 (32 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w1064 (32 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w1064_tsign (32 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w10pro64 (32 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w864 (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w1064v1507 (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w1064v1809 (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w1064 (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w1064_2qxl (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w1064_adm (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w1064_tsign (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w10pro64 (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w10pro64_en_AE_u8 (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w10pro64_ar (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w10pro64_ja (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== w10pro64_zh_CN (64 bit report) ===
riched20:
richole.c:5353: Test failed: 10:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 10:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 10:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 10:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 10:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 10:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 10:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 10:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 11:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 11:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 11:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 11:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 11:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 11:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 11:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 12:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 12:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 12:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 12:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 12:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 12:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 13:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 13:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 13:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5379: Test failed: 13:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 14:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 14:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 15:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 16:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 17:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 18:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 18:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 18:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 18:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 18:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 18:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 18:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 18:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 19:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 19:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 19:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 19:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 19:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 19:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 19:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 19:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1a:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1a:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1a:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1a:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1a:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1a:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1a:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:0: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:1: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:2: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:3: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:0:4+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:4+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4+>?:4: Expected "foo", got ""
richole.c:5353: Test failed: 1b:0:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:0:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:1:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:1:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:1:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:1:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:1:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:0>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:0>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:0>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:0>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:0>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:1>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:1>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:1>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:1>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:1>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:2>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:2>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:2>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:2>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:2>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:3>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:3>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:3>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:3>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:3>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:0+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:1+: Expected "foo", got ""
richole.c:5353: Test failed: 1b:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1b:2:4>0:4+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:2:4>0:4+: unexpected undo success
richole.c:5355: Test failed: 1b:2:4>0:4+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:2:4>0:4+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:2:4>0:4+: Expected "foo", got ""
richole.c:5353: Test failed: 1c:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1c:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1d:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1e:2:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:0: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:1: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:2: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:3: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:3+>?:4: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:0:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:1:4>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:0>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:1>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:2>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:3>0:3+: expected undo count to be 0, got 1
richole.c:5353: Test failed: 1f:2:4>0:3+: expected undo count to be 0, got 1
Report validation errors:
riched20:richole prints too much data (183868 bytes)
=== debian11 (32 bit report) ===
riched20:
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:0: Got 0
richole.c:5378: Test failed: 0:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0>0:0+: Got 0
richole.c:5378: Test failed: 0:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:1: Got 0
richole.c:5378: Test failed: 0:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:2: Got 0
richole.c:5378: Test failed: 0:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:3: Got 0
richole.c:5378: Test failed: 0:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:4: Got 0
richole.c:5378: Test failed: 0:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 0:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:1: Got 0
richole.c:5330: Test failed: 1:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:0: Got 0
richole.c:5378: Test failed: 2:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:0+: Got 0
richole.c:5378: Test failed: 2:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:1: Got 0
richole.c:5378: Test failed: 2:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:1+: Got 0
richole.c:5378: Test failed: 2:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:2: Got 0
richole.c:5378: Test failed: 2:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:3: Got 0
richole.c:5378: Test failed: 2:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:4: Got 0
richole.c:5378: Test failed: 2:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:0: Got 0
richole.c:5378: Test failed: 2:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:0+: Got 0
richole.c:5378: Test failed: 2:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:1: Got 0
richole.c:5378: Test failed: 2:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:1+: Got 0
richole.c:5378: Test failed: 2:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:2: Got 0
richole.c:5378: Test failed: 2:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:3: Got 0
richole.c:5378: Test failed: 2:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:4: Got 0
richole.c:5378: Test failed: 2:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 2:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:2: Got 0
richole.c:5330: Test failed: 3:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:3: Got 0
richole.c:5330: Test failed: 3:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:4: Got 0
richole.c:5330: Test failed: 3:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:2: Got 0
richole.c:5330: Test failed: 3:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:3: Got 0
richole.c:5330: Test failed: 3:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:4: Got 0
richole.c:5330: Test failed: 3:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 3:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:0: Got 0
richole.c:5338: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0>0:0+: Got 0
richole.c:5338: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:1: Got 0
richole.c:5338: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:2: Got 0
richole.c:5338: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:3: Got 0
richole.c:5338: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:4: Got 0
richole.c:5338: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 4:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:1: Got 0
richole.c:5330: Test failed: 5:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:2: Got 0
richole.c:5330: Test failed: 5:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:3: Got 0
richole.c:5330: Test failed: 5:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:4: Got 0
richole.c:5330: Test failed: 5:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 5:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:0: Got 0
richole.c:5338: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:0+: Got 0
richole.c:5338: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:1: Got 0
richole.c:5338: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:1+: Got 0
richole.c:5338: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:2: Got 0
richole.c:5338: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:3: Got 0
richole.c:5338: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:4: Got 0
richole.c:5338: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:0: Got 0
richole.c:5338: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:0+: Got 0
richole.c:5338: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:1: Got 0
richole.c:5338: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:1+: Got 0
richole.c:5338: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:2: Got 0
richole.c:5338: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:3: Got 0
richole.c:5338: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:4: Got 0
richole.c:5338: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 6:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:2: Got 0
richole.c:5330: Test failed: 7:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:3: Got 0
richole.c:5330: Test failed: 7:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:4: Got 0
richole.c:5330: Test failed: 7:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:2: Got 0
richole.c:5330: Test failed: 7:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:3: Got 0
richole.c:5330: Test failed: 7:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:4: Got 0
richole.c:5330: Test failed: 7:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 7:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:0: Got 0
richole.c:5378: Test failed: 8:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0>0:0+: Got 0
richole.c:5378: Test failed: 8:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:1: Got 0
richole.c:5378: Test failed: 8:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:2: Got 0
richole.c:5378: Test failed: 8:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:3: Got 0
richole.c:5378: Test failed: 8:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:4: Got 0
richole.c:5378: Test failed: 8:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 8:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:1: Got 0
richole.c:5330: Test failed: 9:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:2: Got 0
richole.c:5330: Test failed: 9:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:3: Got 0
richole.c:5330: Test failed: 9:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:4: Got 0
richole.c:5330: Test failed: 9:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 9:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:0: Got 0
richole.c:5378: Test failed: a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:0+: Got 0
richole.c:5378: Test failed: a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:1: Got 0
richole.c:5378: Test failed: a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:1+: Got 0
richole.c:5378: Test failed: a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:2: Got 0
richole.c:5378: Test failed: a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:3: Got 0
richole.c:5378: Test failed: a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:4: Got 0
richole.c:5378: Test failed: a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:0: Got 0
richole.c:5378: Test failed: a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:0+: Got 0
richole.c:5378: Test failed: a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:1: Got 0
richole.c:5378: Test failed: a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:1+: Got 0
richole.c:5378: Test failed: a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:2: Got 0
richole.c:5378: Test failed: a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:3: Got 0
richole.c:5378: Test failed: a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:4: Got 0
richole.c:5378: Test failed: a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:2: Got 0
richole.c:5330: Test failed: b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:3: Got 0
richole.c:5330: Test failed: b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:4: Got 0
richole.c:5330: Test failed: b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:2: Got 0
richole.c:5330: Test failed: b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:3: Got 0
richole.c:5330: Test failed: b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:4: Got 0
richole.c:5330: Test failed: b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:0: Got 0
richole.c:5338: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0>0:0+: Got 0
richole.c:5338: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:1: Got 0
richole.c:5338: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:2: Got 0
richole.c:5338: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:3: Got 0
richole.c:5338: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:4: Got 0
richole.c:5338: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:1: Got 0
richole.c:5330: Test failed: d:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:2: Got 0
richole.c:5330: Test failed: d:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:3: Got 0
richole.c:5330: Test failed: d:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:4: Got 0
richole.c:5330: Test failed: d:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:0: Got 0
richole.c:5338: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:0+: Got 0
richole.c:5338: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:1: Got 0
richole.c:5338: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:1+: Got 0
richole.c:5338: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:2: Got 0
richole.c:5338: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:3: Got 0
richole.c:5338: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:4: Got 0
richole.c:5338: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:0: Got 0
richole.c:5338: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:0+: Got 0
richole.c:5338: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:1: Got 0
richole.c:5338: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:1+: Got 0
richole.c:5338: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:2: Got 0
richole.c:5338: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:3: Got 0
richole.c:5338: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:4: Got 0
richole.c:5338: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:2: Got 0
richole.c:5330: Test failed: f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:3: Got 0
richole.c:5330: Test failed: f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:4: Got 0
richole.c:5330: Test failed: f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:2: Got 0
richole.c:5330: Test failed: f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:3: Got 0
richole.c:5330: Test failed: f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:4: Got 0
richole.c:5330: Test failed: f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:0: Got 0
richole.c:5348: Test failed: 10:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:1: Got 0
richole.c:5348: Test failed: 10:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:2: Got 0
richole.c:5348: Test failed: 10:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:3: Got 0
richole.c:5348: Test failed: 10:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:4: Got 0
richole.c:5348: Test failed: 10:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 10:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:0: Got 0
richole.c:5348: Test failed: 11:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:1: Got 0
richole.c:5348: Test failed: 11:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:2: Got 0
richole.c:5348: Test failed: 11:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:3: Got 0
richole.c:5348: Test failed: 11:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:4: Got 0
richole.c:5348: Test failed: 11:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 11:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 12:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 13:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:0: Got 0
richole.c:5338: Test failed: 14:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:1: Got 0
richole.c:5338: Test failed: 14:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:2: Got 0
richole.c:5338: Test failed: 14:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:3: Got 0
richole.c:5338: Test failed: 14:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:4: Got 0
richole.c:5338: Test failed: 14:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 14:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:0: Got 0
richole.c:5348: Test failed: 15:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:1: Got 0
richole.c:5348: Test failed: 15:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:2: Got 0
richole.c:5348: Test failed: 15:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:3: Got 0
richole.c:5348: Test failed: 15:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:4: Got 0
richole.c:5348: Test failed: 15:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 15:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5338: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5353: Test failed: 16:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5338: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5353: Test failed: 16:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5338: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5353: Test failed: 16:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5338: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5353: Test failed: 16:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5338: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5353: Test failed: 16:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5338: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5353: Test failed: 16:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5338: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5353: Test failed: 16:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5338: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5353: Test failed: 16:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5338: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5353: Test failed: 16:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5338: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5353: Test failed: 16:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5338: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5353: Test failed: 16:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5338: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5353: Test failed: 16:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5338: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5353: Test failed: 16:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5338: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5353: Test failed: 16:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 16:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5330: Test failed: 17:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5330: Test failed: 17:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5330: Test failed: 17:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5330: Test failed: 17:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5330: Test failed: 17:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5330: Test failed: 17:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 17:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:0: Got 0
richole.c:5348: Test failed: 18:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:1: Got 0
richole.c:5348: Test failed: 18:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:2: Got 0
richole.c:5348: Test failed: 18:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:3: Got 0
richole.c:5348: Test failed: 18:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:4: Got 0
richole.c:5348: Test failed: 18:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 18:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:0: Got 0
richole.c:5348: Test failed: 19:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:1: Got 0
richole.c:5348: Test failed: 19:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:2: Got 0
richole.c:5348: Test failed: 19:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:3: Got 0
richole.c:5348: Test failed: 19:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:4: Got 0
richole.c:5348: Test failed: 19:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 19:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:0: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:1: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:2: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:3: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:4: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:4: expected state 2, got 0
Report validation errors:
riched20:richole prints too much data (259067 bytes)
=== debian11 (32 bit Arabic:Morocco report) ===
riched20:
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:0: Got 0
richole.c:5378: Test failed: 0:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0>0:0+: Got 0
richole.c:5378: Test failed: 0:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:1: Got 0
richole.c:5378: Test failed: 0:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:2: Got 0
richole.c:5378: Test failed: 0:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:3: Got 0
richole.c:5378: Test failed: 0:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:4: Got 0
richole.c:5378: Test failed: 0:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 0:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:1: Got 0
richole.c:5330: Test failed: 1:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:0: Got 0
richole.c:5378: Test failed: 2:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:0+: Got 0
richole.c:5378: Test failed: 2:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:1: Got 0
richole.c:5378: Test failed: 2:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:1+: Got 0
richole.c:5378: Test failed: 2:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:2: Got 0
richole.c:5378: Test failed: 2:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:3: Got 0
richole.c:5378: Test failed: 2:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:4: Got 0
richole.c:5378: Test failed: 2:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:0: Got 0
richole.c:5378: Test failed: 2:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:0+: Got 0
richole.c:5378: Test failed: 2:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:1: Got 0
richole.c:5378: Test failed: 2:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:1+: Got 0
richole.c:5378: Test failed: 2:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:2: Got 0
richole.c:5378: Test failed: 2:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:3: Got 0
richole.c:5378: Test failed: 2:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:4: Got 0
richole.c:5378: Test failed: 2:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 2:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:2: Got 0
richole.c:5330: Test failed: 3:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:3: Got 0
richole.c:5330: Test failed: 3:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:4: Got 0
richole.c:5330: Test failed: 3:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:2: Got 0
richole.c:5330: Test failed: 3:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:3: Got 0
richole.c:5330: Test failed: 3:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:4: Got 0
richole.c:5330: Test failed: 3:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 3:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:0: Got 0
richole.c:5338: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0>0:0+: Got 0
richole.c:5338: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:1: Got 0
richole.c:5338: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:2: Got 0
richole.c:5338: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:3: Got 0
richole.c:5338: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:4: Got 0
richole.c:5338: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 4:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:1: Got 0
richole.c:5330: Test failed: 5:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:2: Got 0
richole.c:5330: Test failed: 5:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:3: Got 0
richole.c:5330: Test failed: 5:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:4: Got 0
richole.c:5330: Test failed: 5:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 5:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:0: Got 0
richole.c:5338: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:0+: Got 0
richole.c:5338: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:1: Got 0
richole.c:5338: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:1+: Got 0
richole.c:5338: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:2: Got 0
richole.c:5338: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:3: Got 0
richole.c:5338: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:4: Got 0
richole.c:5338: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:0: Got 0
richole.c:5338: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:0+: Got 0
richole.c:5338: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:1: Got 0
richole.c:5338: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:1+: Got 0
richole.c:5338: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:2: Got 0
richole.c:5338: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:3: Got 0
richole.c:5338: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:4: Got 0
richole.c:5338: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 6:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:2: Got 0
richole.c:5330: Test failed: 7:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:3: Got 0
richole.c:5330: Test failed: 7:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:4: Got 0
richole.c:5330: Test failed: 7:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:2: Got 0
richole.c:5330: Test failed: 7:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:3: Got 0
richole.c:5330: Test failed: 7:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:4: Got 0
richole.c:5330: Test failed: 7:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 7:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:0: Got 0
richole.c:5378: Test failed: 8:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0>0:0+: Got 0
richole.c:5378: Test failed: 8:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:1: Got 0
richole.c:5378: Test failed: 8:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:2: Got 0
richole.c:5378: Test failed: 8:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:3: Got 0
richole.c:5378: Test failed: 8:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:4: Got 0
richole.c:5378: Test failed: 8:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 8:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:1: Got 0
richole.c:5330: Test failed: 9:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:2: Got 0
richole.c:5330: Test failed: 9:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:3: Got 0
richole.c:5330: Test failed: 9:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:4: Got 0
richole.c:5330: Test failed: 9:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 9:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:0: Got 0
richole.c:5378: Test failed: a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:0+: Got 0
richole.c:5378: Test failed: a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:1: Got 0
richole.c:5378: Test failed: a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:1+: Got 0
richole.c:5378: Test failed: a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:2: Got 0
richole.c:5378: Test failed: a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:3: Got 0
richole.c:5378: Test failed: a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:4: Got 0
richole.c:5378: Test failed: a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:0: Got 0
richole.c:5378: Test failed: a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:0+: Got 0
richole.c:5378: Test failed: a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:1: Got 0
richole.c:5378: Test failed: a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:1+: Got 0
richole.c:5378: Test failed: a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:2: Got 0
richole.c:5378: Test failed: a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:3: Got 0
richole.c:5378: Test failed: a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:4: Got 0
richole.c:5378: Test failed: a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:2: Got 0
richole.c:5330: Test failed: b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:3: Got 0
richole.c:5330: Test failed: b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:4: Got 0
richole.c:5330: Test failed: b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:2: Got 0
richole.c:5330: Test failed: b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:3: Got 0
richole.c:5330: Test failed: b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:4: Got 0
richole.c:5330: Test failed: b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:0: Got 0
richole.c:5338: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0>0:0+: Got 0
richole.c:5338: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:1: Got 0
richole.c:5338: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:2: Got 0
richole.c:5338: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:3: Got 0
richole.c:5338: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:4: Got 0
richole.c:5338: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:1: Got 0
richole.c:5330: Test failed: d:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:2: Got 0
richole.c:5330: Test failed: d:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:3: Got 0
richole.c:5330: Test failed: d:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:4: Got 0
richole.c:5330: Test failed: d:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:0: Got 0
richole.c:5338: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:0+: Got 0
richole.c:5338: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:1: Got 0
richole.c:5338: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:1+: Got 0
richole.c:5338: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:2: Got 0
richole.c:5338: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:3: Got 0
richole.c:5338: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:4: Got 0
richole.c:5338: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:0: Got 0
richole.c:5338: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:0+: Got 0
richole.c:5338: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:1: Got 0
richole.c:5338: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:1+: Got 0
richole.c:5338: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:2: Got 0
richole.c:5338: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:3: Got 0
richole.c:5338: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:4: Got 0
richole.c:5338: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:2: Got 0
richole.c:5330: Test failed: f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:3: Got 0
richole.c:5330: Test failed: f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:4: Got 0
richole.c:5330: Test failed: f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:2: Got 0
richole.c:5330: Test failed: f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:3: Got 0
richole.c:5330: Test failed: f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:4: Got 0
richole.c:5330: Test failed: f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:0: Got 0
richole.c:5348: Test failed: 10:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:1: Got 0
richole.c:5348: Test failed: 10:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:2: Got 0
richole.c:5348: Test failed: 10:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:3: Got 0
richole.c:5348: Test failed: 10:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:4: Got 0
richole.c:5348: Test failed: 10:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 10:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:0: Got 0
richole.c:5348: Test failed: 11:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:1: Got 0
richole.c:5348: Test failed: 11:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:2: Got 0
richole.c:5348: Test failed: 11:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:3: Got 0
richole.c:5348: Test failed: 11:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:4: Got 0
richole.c:5348: Test failed: 11:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 11:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 12:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 13:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:0: Got 0
richole.c:5338: Test failed: 14:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:1: Got 0
richole.c:5338: Test failed: 14:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:2: Got 0
richole.c:5338: Test failed: 14:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:3: Got 0
richole.c:5338: Test failed: 14:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:4: Got 0
richole.c:5338: Test failed: 14:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 14:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:0: Got 0
richole.c:5348: Test failed: 15:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:1: Got 0
richole.c:5348: Test failed: 15:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:2: Got 0
richole.c:5348: Test failed: 15:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:3: Got 0
richole.c:5348: Test failed: 15:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:4: Got 0
richole.c:5348: Test failed: 15:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 15:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5338: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5353: Test failed: 16:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5338: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5353: Test failed: 16:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5338: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5353: Test failed: 16:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5338: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5353: Test failed: 16:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5338: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5353: Test failed: 16:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5338: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5353: Test failed: 16:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5338: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5353: Test failed: 16:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5338: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5353: Test failed: 16:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5338: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5353: Test failed: 16:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5338: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5353: Test failed: 16:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5338: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5353: Test failed: 16:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5338: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5353: Test failed: 16:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5338: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5353: Test failed: 16:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5338: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5353: Test failed: 16:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 16:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5330: Test failed: 17:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5330: Test failed: 17:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5330: Test failed: 17:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5330: Test failed: 17:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5330: Test failed: 17:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5330: Test failed: 17:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 17:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:0: Got 0
richole.c:5348: Test failed: 18:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:1: Got 0
richole.c:5348: Test failed: 18:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:2: Got 0
richole.c:5348: Test failed: 18:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:3: Got 0
richole.c:5348: Test failed: 18:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:4: Got 0
richole.c:5348: Test failed: 18:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 18:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:0: Got 0
richole.c:5348: Test failed: 19:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:1: Got 0
richole.c:5348: Test failed: 19:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:2: Got 0
richole.c:5348: Test failed: 19:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:3: Got 0
richole.c:5348: Test failed: 19:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:4: Got 0
richole.c:5348: Test failed: 19:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 19:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:0: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:1: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:2: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:3: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:4: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:4: expected state 2, got 0
Report validation errors:
riched20:richole prints too much data (259067 bytes)
=== debian11 (32 bit German report) ===
riched20:
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:0: Got 0
richole.c:5378: Test failed: 0:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0>0:0+: Got 0
richole.c:5378: Test failed: 0:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:1: Got 0
richole.c:5378: Test failed: 0:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:2: Got 0
richole.c:5378: Test failed: 0:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:3: Got 0
richole.c:5378: Test failed: 0:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:4: Got 0
richole.c:5378: Test failed: 0:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 0:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:1: Got 0
richole.c:5330: Test failed: 1:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:0: Got 0
richole.c:5378: Test failed: 2:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:0+: Got 0
richole.c:5378: Test failed: 2:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:1: Got 0
richole.c:5378: Test failed: 2:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:1+: Got 0
richole.c:5378: Test failed: 2:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:2: Got 0
richole.c:5378: Test failed: 2:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:3: Got 0
richole.c:5378: Test failed: 2:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:4: Got 0
richole.c:5378: Test failed: 2:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:0: Got 0
richole.c:5378: Test failed: 2:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:0+: Got 0
richole.c:5378: Test failed: 2:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:1: Got 0
richole.c:5378: Test failed: 2:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:1+: Got 0
richole.c:5378: Test failed: 2:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:2: Got 0
richole.c:5378: Test failed: 2:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:3: Got 0
richole.c:5378: Test failed: 2:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:4: Got 0
richole.c:5378: Test failed: 2:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 2:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:2: Got 0
richole.c:5330: Test failed: 3:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:3: Got 0
richole.c:5330: Test failed: 3:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:4: Got 0
richole.c:5330: Test failed: 3:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:2: Got 0
richole.c:5330: Test failed: 3:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:3: Got 0
richole.c:5330: Test failed: 3:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:4: Got 0
richole.c:5330: Test failed: 3:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 3:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:0: Got 0
richole.c:5338: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0>0:0+: Got 0
richole.c:5338: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:1: Got 0
richole.c:5338: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:2: Got 0
richole.c:5338: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:3: Got 0
richole.c:5338: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:4: Got 0
richole.c:5338: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 4:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:1: Got 0
richole.c:5330: Test failed: 5:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:2: Got 0
richole.c:5330: Test failed: 5:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:3: Got 0
richole.c:5330: Test failed: 5:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:4: Got 0
richole.c:5330: Test failed: 5:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 5:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:0: Got 0
richole.c:5338: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:0+: Got 0
richole.c:5338: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:1: Got 0
richole.c:5338: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:1+: Got 0
richole.c:5338: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:2: Got 0
richole.c:5338: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:3: Got 0
richole.c:5338: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:4: Got 0
richole.c:5338: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:0: Got 0
richole.c:5338: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:0+: Got 0
richole.c:5338: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:1: Got 0
richole.c:5338: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:1+: Got 0
richole.c:5338: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:2: Got 0
richole.c:5338: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:3: Got 0
richole.c:5338: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:4: Got 0
richole.c:5338: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 6:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:2: Got 0
richole.c:5330: Test failed: 7:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:3: Got 0
richole.c:5330: Test failed: 7:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:4: Got 0
richole.c:5330: Test failed: 7:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:2: Got 0
richole.c:5330: Test failed: 7:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:3: Got 0
richole.c:5330: Test failed: 7:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:4: Got 0
richole.c:5330: Test failed: 7:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 7:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:0: Got 0
richole.c:5378: Test failed: 8:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0>0:0+: Got 0
richole.c:5378: Test failed: 8:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:1: Got 0
richole.c:5378: Test failed: 8:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:2: Got 0
richole.c:5378: Test failed: 8:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:3: Got 0
richole.c:5378: Test failed: 8:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:4: Got 0
richole.c:5378: Test failed: 8:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 8:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:1: Got 0
richole.c:5330: Test failed: 9:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:2: Got 0
richole.c:5330: Test failed: 9:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:3: Got 0
richole.c:5330: Test failed: 9:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:4: Got 0
richole.c:5330: Test failed: 9:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 9:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:0: Got 0
richole.c:5378: Test failed: a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:0+: Got 0
richole.c:5378: Test failed: a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:1: Got 0
richole.c:5378: Test failed: a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:1+: Got 0
richole.c:5378: Test failed: a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:2: Got 0
richole.c:5378: Test failed: a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:3: Got 0
richole.c:5378: Test failed: a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:4: Got 0
richole.c:5378: Test failed: a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:0: Got 0
richole.c:5378: Test failed: a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:0+: Got 0
richole.c:5378: Test failed: a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:1: Got 0
richole.c:5378: Test failed: a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:1+: Got 0
richole.c:5378: Test failed: a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:2: Got 0
richole.c:5378: Test failed: a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:3: Got 0
richole.c:5378: Test failed: a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:4: Got 0
richole.c:5378: Test failed: a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:2: Got 0
richole.c:5330: Test failed: b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:3: Got 0
richole.c:5330: Test failed: b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:4: Got 0
richole.c:5330: Test failed: b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:2: Got 0
richole.c:5330: Test failed: b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:3: Got 0
richole.c:5330: Test failed: b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:4: Got 0
richole.c:5330: Test failed: b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:0: Got 0
richole.c:5338: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0>0:0+: Got 0
richole.c:5338: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:1: Got 0
richole.c:5338: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:2: Got 0
richole.c:5338: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:3: Got 0
richole.c:5338: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:4: Got 0
richole.c:5338: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:1: Got 0
richole.c:5330: Test failed: d:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:2: Got 0
richole.c:5330: Test failed: d:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:3: Got 0
richole.c:5330: Test failed: d:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:4: Got 0
richole.c:5330: Test failed: d:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:0: Got 0
richole.c:5338: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:0+: Got 0
richole.c:5338: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:1: Got 0
richole.c:5338: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:1+: Got 0
richole.c:5338: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:2: Got 0
richole.c:5338: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:3: Got 0
richole.c:5338: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:4: Got 0
richole.c:5338: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:0: Got 0
richole.c:5338: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:0+: Got 0
richole.c:5338: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:1: Got 0
richole.c:5338: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:1+: Got 0
richole.c:5338: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:2: Got 0
richole.c:5338: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:3: Got 0
richole.c:5338: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:4: Got 0
richole.c:5338: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:2: Got 0
richole.c:5330: Test failed: f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:3: Got 0
richole.c:5330: Test failed: f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:4: Got 0
richole.c:5330: Test failed: f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:2: Got 0
richole.c:5330: Test failed: f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:3: Got 0
richole.c:5330: Test failed: f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:4: Got 0
richole.c:5330: Test failed: f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:0: Got 0
richole.c:5348: Test failed: 10:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:1: Got 0
richole.c:5348: Test failed: 10:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:2: Got 0
richole.c:5348: Test failed: 10:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:3: Got 0
richole.c:5348: Test failed: 10:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:4: Got 0
richole.c:5348: Test failed: 10:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 10:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:0: Got 0
richole.c:5348: Test failed: 11:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:1: Got 0
richole.c:5348: Test failed: 11:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:2: Got 0
richole.c:5348: Test failed: 11:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:3: Got 0
richole.c:5348: Test failed: 11:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:4: Got 0
richole.c:5348: Test failed: 11:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 11:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 12:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 13:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:0: Got 0
richole.c:5338: Test failed: 14:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:1: Got 0
richole.c:5338: Test failed: 14:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:2: Got 0
richole.c:5338: Test failed: 14:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:3: Got 0
richole.c:5338: Test failed: 14:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:4: Got 0
richole.c:5338: Test failed: 14:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 14:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:0: Got 0
richole.c:5348: Test failed: 15:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:1: Got 0
richole.c:5348: Test failed: 15:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:2: Got 0
richole.c:5348: Test failed: 15:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:3: Got 0
richole.c:5348: Test failed: 15:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:4: Got 0
richole.c:5348: Test failed: 15:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 15:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5338: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5353: Test failed: 16:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5338: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5353: Test failed: 16:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5338: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5353: Test failed: 16:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5338: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5353: Test failed: 16:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5338: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5353: Test failed: 16:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5338: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5353: Test failed: 16:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5338: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5353: Test failed: 16:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5338: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5353: Test failed: 16:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5338: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5353: Test failed: 16:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5338: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5353: Test failed: 16:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5338: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5353: Test failed: 16:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5338: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5353: Test failed: 16:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5338: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5353: Test failed: 16:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5338: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5353: Test failed: 16:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 16:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5330: Test failed: 17:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5330: Test failed: 17:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5330: Test failed: 17:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5330: Test failed: 17:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5330: Test failed: 17:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5330: Test failed: 17:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 17:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:0: Got 0
richole.c:5348: Test failed: 18:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:1: Got 0
richole.c:5348: Test failed: 18:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:2: Got 0
richole.c:5348: Test failed: 18:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:3: Got 0
richole.c:5348: Test failed: 18:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:4: Got 0
richole.c:5348: Test failed: 18:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 18:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:0: Got 0
richole.c:5348: Test failed: 19:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:1: Got 0
richole.c:5348: Test failed: 19:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:2: Got 0
richole.c:5348: Test failed: 19:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:3: Got 0
richole.c:5348: Test failed: 19:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:4: Got 0
richole.c:5348: Test failed: 19:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 19:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:0: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:1: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:2: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:3: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:4: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:4: expected state 2, got 0
Report validation errors:
riched20:richole prints too much data (259067 bytes)
=== debian11 (32 bit French report) ===
riched20:
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:0: Got 0
richole.c:5378: Test failed: 0:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0>0:0+: Got 0
richole.c:5378: Test failed: 0:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:1: Got 0
richole.c:5378: Test failed: 0:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:2: Got 0
richole.c:5378: Test failed: 0:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:3: Got 0
richole.c:5378: Test failed: 0:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:4: Got 0
richole.c:5378: Test failed: 0:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 0:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:1: Got 0
richole.c:5330: Test failed: 1:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:0: Got 0
richole.c:5378: Test failed: 2:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:0+: Got 0
richole.c:5378: Test failed: 2:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:1: Got 0
richole.c:5378: Test failed: 2:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:1+: Got 0
richole.c:5378: Test failed: 2:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:2: Got 0
richole.c:5378: Test failed: 2:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:3: Got 0
richole.c:5378: Test failed: 2:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:4: Got 0
richole.c:5378: Test failed: 2:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:0: Got 0
richole.c:5378: Test failed: 2:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:0+: Got 0
richole.c:5378: Test failed: 2:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:1: Got 0
richole.c:5378: Test failed: 2:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:1+: Got 0
richole.c:5378: Test failed: 2:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:2: Got 0
richole.c:5378: Test failed: 2:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:3: Got 0
richole.c:5378: Test failed: 2:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:4: Got 0
richole.c:5378: Test failed: 2:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 2:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:2: Got 0
richole.c:5330: Test failed: 3:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:3: Got 0
richole.c:5330: Test failed: 3:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:4: Got 0
richole.c:5330: Test failed: 3:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:2: Got 0
richole.c:5330: Test failed: 3:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:3: Got 0
richole.c:5330: Test failed: 3:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:4: Got 0
richole.c:5330: Test failed: 3:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 3:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:0: Got 0
richole.c:5338: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0>0:0+: Got 0
richole.c:5338: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:1: Got 0
richole.c:5338: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:2: Got 0
richole.c:5338: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:3: Got 0
richole.c:5338: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:4: Got 0
richole.c:5338: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 4:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:1: Got 0
richole.c:5330: Test failed: 5:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:2: Got 0
richole.c:5330: Test failed: 5:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:3: Got 0
richole.c:5330: Test failed: 5:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:4: Got 0
richole.c:5330: Test failed: 5:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 5:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:0: Got 0
richole.c:5338: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:0+: Got 0
richole.c:5338: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:1: Got 0
richole.c:5338: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:1+: Got 0
richole.c:5338: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:2: Got 0
richole.c:5338: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:3: Got 0
richole.c:5338: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:4: Got 0
richole.c:5338: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:0: Got 0
richole.c:5338: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:0+: Got 0
richole.c:5338: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:1: Got 0
richole.c:5338: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:1+: Got 0
richole.c:5338: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:2: Got 0
richole.c:5338: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:3: Got 0
richole.c:5338: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:4: Got 0
richole.c:5338: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 6:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:2: Got 0
richole.c:5330: Test failed: 7:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:3: Got 0
richole.c:5330: Test failed: 7:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:4: Got 0
richole.c:5330: Test failed: 7:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:2: Got 0
richole.c:5330: Test failed: 7:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:3: Got 0
richole.c:5330: Test failed: 7:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:4: Got 0
richole.c:5330: Test failed: 7:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 7:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:0: Got 0
richole.c:5378: Test failed: 8:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0>0:0+: Got 0
richole.c:5378: Test failed: 8:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:1: Got 0
richole.c:5378: Test failed: 8:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:2: Got 0
richole.c:5378: Test failed: 8:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:3: Got 0
richole.c:5378: Test failed: 8:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:4: Got 0
richole.c:5378: Test failed: 8:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 8:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:1: Got 0
richole.c:5330: Test failed: 9:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:2: Got 0
richole.c:5330: Test failed: 9:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:3: Got 0
richole.c:5330: Test failed: 9:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:4: Got 0
richole.c:5330: Test failed: 9:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 9:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:0: Got 0
richole.c:5378: Test failed: a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:0+: Got 0
richole.c:5378: Test failed: a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:1: Got 0
richole.c:5378: Test failed: a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:1+: Got 0
richole.c:5378: Test failed: a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:2: Got 0
richole.c:5378: Test failed: a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:3: Got 0
richole.c:5378: Test failed: a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:4: Got 0
richole.c:5378: Test failed: a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:0: Got 0
richole.c:5378: Test failed: a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:0+: Got 0
richole.c:5378: Test failed: a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:1: Got 0
richole.c:5378: Test failed: a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:1+: Got 0
richole.c:5378: Test failed: a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:2: Got 0
richole.c:5378: Test failed: a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:3: Got 0
richole.c:5378: Test failed: a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:4: Got 0
richole.c:5378: Test failed: a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:2: Got 0
richole.c:5330: Test failed: b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:3: Got 0
richole.c:5330: Test failed: b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:4: Got 0
richole.c:5330: Test failed: b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:2: Got 0
richole.c:5330: Test failed: b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:3: Got 0
richole.c:5330: Test failed: b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:4: Got 0
richole.c:5330: Test failed: b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:0: Got 0
richole.c:5338: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0>0:0+: Got 0
richole.c:5338: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:1: Got 0
richole.c:5338: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:2: Got 0
richole.c:5338: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:3: Got 0
richole.c:5338: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:4: Got 0
richole.c:5338: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:1: Got 0
richole.c:5330: Test failed: d:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:2: Got 0
richole.c:5330: Test failed: d:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:3: Got 0
richole.c:5330: Test failed: d:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:4: Got 0
richole.c:5330: Test failed: d:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:0: Got 0
richole.c:5338: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:0+: Got 0
richole.c:5338: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:1: Got 0
richole.c:5338: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:1+: Got 0
richole.c:5338: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:2: Got 0
richole.c:5338: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:3: Got 0
richole.c:5338: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:4: Got 0
richole.c:5338: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:0: Got 0
richole.c:5338: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:0+: Got 0
richole.c:5338: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:1: Got 0
richole.c:5338: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:1+: Got 0
richole.c:5338: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:2: Got 0
richole.c:5338: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:3: Got 0
richole.c:5338: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:4: Got 0
richole.c:5338: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:2: Got 0
richole.c:5330: Test failed: f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:3: Got 0
richole.c:5330: Test failed: f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:4: Got 0
richole.c:5330: Test failed: f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:2: Got 0
richole.c:5330: Test failed: f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:3: Got 0
richole.c:5330: Test failed: f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:4: Got 0
richole.c:5330: Test failed: f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:0: Got 0
richole.c:5348: Test failed: 10:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:1: Got 0
richole.c:5348: Test failed: 10:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:2: Got 0
richole.c:5348: Test failed: 10:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:3: Got 0
richole.c:5348: Test failed: 10:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:4: Got 0
richole.c:5348: Test failed: 10:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 10:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:0: Got 0
richole.c:5348: Test failed: 11:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:1: Got 0
richole.c:5348: Test failed: 11:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:2: Got 0
richole.c:5348: Test failed: 11:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:3: Got 0
richole.c:5348: Test failed: 11:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:4: Got 0
richole.c:5348: Test failed: 11:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 11:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 12:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 13:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:0: Got 0
richole.c:5338: Test failed: 14:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:1: Got 0
richole.c:5338: Test failed: 14:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:2: Got 0
richole.c:5338: Test failed: 14:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:3: Got 0
richole.c:5338: Test failed: 14:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:4: Got 0
richole.c:5338: Test failed: 14:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 14:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:0: Got 0
richole.c:5348: Test failed: 15:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:1: Got 0
richole.c:5348: Test failed: 15:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:2: Got 0
richole.c:5348: Test failed: 15:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:3: Got 0
richole.c:5348: Test failed: 15:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:4: Got 0
richole.c:5348: Test failed: 15:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 15:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5338: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5353: Test failed: 16:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5338: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5353: Test failed: 16:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5338: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5353: Test failed: 16:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5338: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5353: Test failed: 16:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5338: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5353: Test failed: 16:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5338: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5353: Test failed: 16:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5338: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5353: Test failed: 16:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5338: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5353: Test failed: 16:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5338: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5353: Test failed: 16:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5338: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5353: Test failed: 16:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5338: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5353: Test failed: 16:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5338: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5353: Test failed: 16:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5338: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5353: Test failed: 16:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5338: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5353: Test failed: 16:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 16:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5330: Test failed: 17:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5330: Test failed: 17:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5330: Test failed: 17:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5330: Test failed: 17:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5330: Test failed: 17:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5330: Test failed: 17:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 17:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:0: Got 0
richole.c:5348: Test failed: 18:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:1: Got 0
richole.c:5348: Test failed: 18:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:2: Got 0
richole.c:5348: Test failed: 18:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:3: Got 0
richole.c:5348: Test failed: 18:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:4: Got 0
richole.c:5348: Test failed: 18:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 18:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:0: Got 0
richole.c:5348: Test failed: 19:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:1: Got 0
richole.c:5348: Test failed: 19:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:2: Got 0
richole.c:5348: Test failed: 19:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:3: Got 0
richole.c:5348: Test failed: 19:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:4: Got 0
richole.c:5348: Test failed: 19:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 19:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:0: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:1: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:2: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:3: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:4: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:4: expected state 2, got 0
Report validation errors:
riched20:richole prints too much data (259067 bytes)
=== debian11 (32 bit Hebrew:Israel report) ===
riched20:
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:0: Got 0
richole.c:5378: Test failed: 0:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0>0:0+: Got 0
richole.c:5378: Test failed: 0:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:1: Got 0
richole.c:5378: Test failed: 0:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:2: Got 0
richole.c:5378: Test failed: 0:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:3: Got 0
richole.c:5378: Test failed: 0:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:4: Got 0
richole.c:5378: Test failed: 0:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 0:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:1: Got 0
richole.c:5330: Test failed: 1:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:0: Got 0
richole.c:5378: Test failed: 2:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:0+: Got 0
richole.c:5378: Test failed: 2:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:1: Got 0
richole.c:5378: Test failed: 2:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:1+: Got 0
richole.c:5378: Test failed: 2:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:2: Got 0
richole.c:5378: Test failed: 2:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:3: Got 0
richole.c:5378: Test failed: 2:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:4: Got 0
richole.c:5378: Test failed: 2:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:0: Got 0
richole.c:5378: Test failed: 2:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:0+: Got 0
richole.c:5378: Test failed: 2:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:1: Got 0
richole.c:5378: Test failed: 2:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:1+: Got 0
richole.c:5378: Test failed: 2:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:2: Got 0
richole.c:5378: Test failed: 2:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:3: Got 0
richole.c:5378: Test failed: 2:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:4: Got 0
richole.c:5378: Test failed: 2:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 2:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:2: Got 0
richole.c:5330: Test failed: 3:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:3: Got 0
richole.c:5330: Test failed: 3:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:4: Got 0
richole.c:5330: Test failed: 3:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:2: Got 0
richole.c:5330: Test failed: 3:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:3: Got 0
richole.c:5330: Test failed: 3:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:4: Got 0
richole.c:5330: Test failed: 3:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 3:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:0: Got 0
richole.c:5338: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0>0:0+: Got 0
richole.c:5338: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:1: Got 0
richole.c:5338: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:2: Got 0
richole.c:5338: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:3: Got 0
richole.c:5338: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:4: Got 0
richole.c:5338: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 4:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:1: Got 0
richole.c:5330: Test failed: 5:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:2: Got 0
richole.c:5330: Test failed: 5:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:3: Got 0
richole.c:5330: Test failed: 5:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:4: Got 0
richole.c:5330: Test failed: 5:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 5:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:0: Got 0
richole.c:5338: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:0+: Got 0
richole.c:5338: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:1: Got 0
richole.c:5338: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:1+: Got 0
richole.c:5338: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:2: Got 0
richole.c:5338: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:3: Got 0
richole.c:5338: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:4: Got 0
richole.c:5338: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:0: Got 0
richole.c:5338: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:0+: Got 0
richole.c:5338: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:1: Got 0
richole.c:5338: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:1+: Got 0
richole.c:5338: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:2: Got 0
richole.c:5338: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:3: Got 0
richole.c:5338: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:4: Got 0
richole.c:5338: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 6:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:2: Got 0
richole.c:5330: Test failed: 7:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:3: Got 0
richole.c:5330: Test failed: 7:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:4: Got 0
richole.c:5330: Test failed: 7:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:2: Got 0
richole.c:5330: Test failed: 7:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:3: Got 0
richole.c:5330: Test failed: 7:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:4: Got 0
richole.c:5330: Test failed: 7:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 7:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:0: Got 0
richole.c:5378: Test failed: 8:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0>0:0+: Got 0
richole.c:5378: Test failed: 8:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:1: Got 0
richole.c:5378: Test failed: 8:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:2: Got 0
richole.c:5378: Test failed: 8:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:3: Got 0
richole.c:5378: Test failed: 8:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:4: Got 0
richole.c:5378: Test failed: 8:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 8:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:1: Got 0
richole.c:5330: Test failed: 9:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:2: Got 0
richole.c:5330: Test failed: 9:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:3: Got 0
richole.c:5330: Test failed: 9:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:4: Got 0
richole.c:5330: Test failed: 9:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 9:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:0: Got 0
richole.c:5378: Test failed: a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:0+: Got 0
richole.c:5378: Test failed: a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:1: Got 0
richole.c:5378: Test failed: a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:1+: Got 0
richole.c:5378: Test failed: a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:2: Got 0
richole.c:5378: Test failed: a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:3: Got 0
richole.c:5378: Test failed: a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:4: Got 0
richole.c:5378: Test failed: a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:0: Got 0
richole.c:5378: Test failed: a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:0+: Got 0
richole.c:5378: Test failed: a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:1: Got 0
richole.c:5378: Test failed: a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:1+: Got 0
richole.c:5378: Test failed: a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:2: Got 0
richole.c:5378: Test failed: a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:3: Got 0
richole.c:5378: Test failed: a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:4: Got 0
richole.c:5378: Test failed: a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:2: Got 0
richole.c:5330: Test failed: b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:3: Got 0
richole.c:5330: Test failed: b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:4: Got 0
richole.c:5330: Test failed: b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:2: Got 0
richole.c:5330: Test failed: b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:3: Got 0
richole.c:5330: Test failed: b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:4: Got 0
richole.c:5330: Test failed: b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:0: Got 0
richole.c:5338: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0>0:0+: Got 0
richole.c:5338: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:1: Got 0
richole.c:5338: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:2: Got 0
richole.c:5338: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:3: Got 0
richole.c:5338: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:4: Got 0
richole.c:5338: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:1: Got 0
richole.c:5330: Test failed: d:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:2: Got 0
richole.c:5330: Test failed: d:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:3: Got 0
richole.c:5330: Test failed: d:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:4: Got 0
richole.c:5330: Test failed: d:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:0: Got 0
richole.c:5338: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:0+: Got 0
richole.c:5338: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:1: Got 0
richole.c:5338: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:1+: Got 0
richole.c:5338: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:2: Got 0
richole.c:5338: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:3: Got 0
richole.c:5338: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:4: Got 0
richole.c:5338: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:0: Got 0
richole.c:5338: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:0+: Got 0
richole.c:5338: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:1: Got 0
richole.c:5338: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:1+: Got 0
richole.c:5338: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:2: Got 0
richole.c:5338: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:3: Got 0
richole.c:5338: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:4: Got 0
richole.c:5338: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:2: Got 0
richole.c:5330: Test failed: f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:3: Got 0
richole.c:5330: Test failed: f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:4: Got 0
richole.c:5330: Test failed: f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:2: Got 0
richole.c:5330: Test failed: f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:3: Got 0
richole.c:5330: Test failed: f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:4: Got 0
richole.c:5330: Test failed: f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:0: Got 0
richole.c:5348: Test failed: 10:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:1: Got 0
richole.c:5348: Test failed: 10:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:2: Got 0
richole.c:5348: Test failed: 10:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:3: Got 0
richole.c:5348: Test failed: 10:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:4: Got 0
richole.c:5348: Test failed: 10:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 10:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:0: Got 0
richole.c:5348: Test failed: 11:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:1: Got 0
richole.c:5348: Test failed: 11:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:2: Got 0
richole.c:5348: Test failed: 11:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:3: Got 0
richole.c:5348: Test failed: 11:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:4: Got 0
richole.c:5348: Test failed: 11:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 11:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 12:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 13:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:0: Got 0
richole.c:5338: Test failed: 14:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:1: Got 0
richole.c:5338: Test failed: 14:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:2: Got 0
richole.c:5338: Test failed: 14:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:3: Got 0
richole.c:5338: Test failed: 14:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:4: Got 0
richole.c:5338: Test failed: 14:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 14:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:0: Got 0
richole.c:5348: Test failed: 15:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:1: Got 0
richole.c:5348: Test failed: 15:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:2: Got 0
richole.c:5348: Test failed: 15:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:3: Got 0
richole.c:5348: Test failed: 15:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:4: Got 0
richole.c:5348: Test failed: 15:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 15:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5338: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5353: Test failed: 16:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5338: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5353: Test failed: 16:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5338: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5353: Test failed: 16:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5338: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5353: Test failed: 16:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5338: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5353: Test failed: 16:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5338: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5353: Test failed: 16:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5338: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5353: Test failed: 16:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5338: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5353: Test failed: 16:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5338: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5353: Test failed: 16:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5338: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5353: Test failed: 16:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5338: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5353: Test failed: 16:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5338: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5353: Test failed: 16:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5338: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5353: Test failed: 16:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5338: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5353: Test failed: 16:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 16:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5330: Test failed: 17:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5330: Test failed: 17:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5330: Test failed: 17:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5330: Test failed: 17:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5330: Test failed: 17:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5330: Test failed: 17:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 17:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:0: Got 0
richole.c:5348: Test failed: 18:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:1: Got 0
richole.c:5348: Test failed: 18:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:2: Got 0
richole.c:5348: Test failed: 18:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:3: Got 0
richole.c:5348: Test failed: 18:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:4: Got 0
richole.c:5348: Test failed: 18:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 18:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:0: Got 0
richole.c:5348: Test failed: 19:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:1: Got 0
richole.c:5348: Test failed: 19:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:2: Got 0
richole.c:5348: Test failed: 19:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:3: Got 0
richole.c:5348: Test failed: 19:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:4: Got 0
richole.c:5348: Test failed: 19:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 19:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:0: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:1: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:2: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:3: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:4: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:4: expected state 2, got 0
Report validation errors:
riched20:richole prints too much data (259067 bytes)
=== debian11 (32 bit Hindi:India report) ===
riched20:
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:0: Got 0
richole.c:5378: Test failed: 0:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0>0:0+: Got 0
richole.c:5378: Test failed: 0:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:1: Got 0
richole.c:5378: Test failed: 0:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:2: Got 0
richole.c:5378: Test failed: 0:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:3: Got 0
richole.c:5378: Test failed: 0:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:4: Got 0
richole.c:5378: Test failed: 0:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 0:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:1: Got 0
richole.c:5330: Test failed: 1:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:0: Got 0
richole.c:5378: Test failed: 2:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:0+: Got 0
richole.c:5378: Test failed: 2:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:1: Got 0
richole.c:5378: Test failed: 2:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:1+: Got 0
richole.c:5378: Test failed: 2:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:2: Got 0
richole.c:5378: Test failed: 2:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:3: Got 0
richole.c:5378: Test failed: 2:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:4: Got 0
richole.c:5378: Test failed: 2:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:0: Got 0
richole.c:5378: Test failed: 2:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:0+: Got 0
richole.c:5378: Test failed: 2:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:1: Got 0
richole.c:5378: Test failed: 2:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:1+: Got 0
richole.c:5378: Test failed: 2:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:2: Got 0
richole.c:5378: Test failed: 2:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:3: Got 0
richole.c:5378: Test failed: 2:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:4: Got 0
richole.c:5378: Test failed: 2:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 2:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:2: Got 0
richole.c:5330: Test failed: 3:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:3: Got 0
richole.c:5330: Test failed: 3:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:4: Got 0
richole.c:5330: Test failed: 3:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:2: Got 0
richole.c:5330: Test failed: 3:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:3: Got 0
richole.c:5330: Test failed: 3:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:4: Got 0
richole.c:5330: Test failed: 3:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 3:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:0: Got 0
richole.c:5338: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0>0:0+: Got 0
richole.c:5338: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:1: Got 0
richole.c:5338: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:2: Got 0
richole.c:5338: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:3: Got 0
richole.c:5338: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:4: Got 0
richole.c:5338: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 4:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:1: Got 0
richole.c:5330: Test failed: 5:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:2: Got 0
richole.c:5330: Test failed: 5:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:3: Got 0
richole.c:5330: Test failed: 5:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:4: Got 0
richole.c:5330: Test failed: 5:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 5:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:0: Got 0
richole.c:5338: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:0+: Got 0
richole.c:5338: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:1: Got 0
richole.c:5338: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:1+: Got 0
richole.c:5338: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:2: Got 0
richole.c:5338: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:3: Got 0
richole.c:5338: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:4: Got 0
richole.c:5338: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:0: Got 0
richole.c:5338: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:0+: Got 0
richole.c:5338: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:1: Got 0
richole.c:5338: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:1+: Got 0
richole.c:5338: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:2: Got 0
richole.c:5338: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:3: Got 0
richole.c:5338: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:4: Got 0
richole.c:5338: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 6:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:2: Got 0
richole.c:5330: Test failed: 7:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:3: Got 0
richole.c:5330: Test failed: 7:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:4: Got 0
richole.c:5330: Test failed: 7:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:2: Got 0
richole.c:5330: Test failed: 7:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:3: Got 0
richole.c:5330: Test failed: 7:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:4: Got 0
richole.c:5330: Test failed: 7:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 7:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:0: Got 0
richole.c:5378: Test failed: 8:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0>0:0+: Got 0
richole.c:5378: Test failed: 8:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:1: Got 0
richole.c:5378: Test failed: 8:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:2: Got 0
richole.c:5378: Test failed: 8:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:3: Got 0
richole.c:5378: Test failed: 8:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:4: Got 0
richole.c:5378: Test failed: 8:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 8:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:1: Got 0
richole.c:5330: Test failed: 9:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:2: Got 0
richole.c:5330: Test failed: 9:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:3: Got 0
richole.c:5330: Test failed: 9:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:4: Got 0
richole.c:5330: Test failed: 9:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 9:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:0: Got 0
richole.c:5378: Test failed: a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:0+: Got 0
richole.c:5378: Test failed: a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:1: Got 0
richole.c:5378: Test failed: a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:1+: Got 0
richole.c:5378: Test failed: a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:2: Got 0
richole.c:5378: Test failed: a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:3: Got 0
richole.c:5378: Test failed: a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:4: Got 0
richole.c:5378: Test failed: a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:0: Got 0
richole.c:5378: Test failed: a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:0+: Got 0
richole.c:5378: Test failed: a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:1: Got 0
richole.c:5378: Test failed: a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:1+: Got 0
richole.c:5378: Test failed: a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:2: Got 0
richole.c:5378: Test failed: a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:3: Got 0
richole.c:5378: Test failed: a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:4: Got 0
richole.c:5378: Test failed: a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:2: Got 0
richole.c:5330: Test failed: b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:3: Got 0
richole.c:5330: Test failed: b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:4: Got 0
richole.c:5330: Test failed: b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:2: Got 0
richole.c:5330: Test failed: b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:3: Got 0
richole.c:5330: Test failed: b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:4: Got 0
richole.c:5330: Test failed: b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:0: Got 0
richole.c:5338: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0>0:0+: Got 0
richole.c:5338: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:1: Got 0
richole.c:5338: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:2: Got 0
richole.c:5338: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:3: Got 0
richole.c:5338: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:4: Got 0
richole.c:5338: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:1: Got 0
richole.c:5330: Test failed: d:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:2: Got 0
richole.c:5330: Test failed: d:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:3: Got 0
richole.c:5330: Test failed: d:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:4: Got 0
richole.c:5330: Test failed: d:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:0: Got 0
richole.c:5338: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:0+: Got 0
richole.c:5338: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:1: Got 0
richole.c:5338: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:1+: Got 0
richole.c:5338: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:2: Got 0
richole.c:5338: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:3: Got 0
richole.c:5338: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:4: Got 0
richole.c:5338: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:0: Got 0
richole.c:5338: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:0+: Got 0
richole.c:5338: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:1: Got 0
richole.c:5338: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:1+: Got 0
richole.c:5338: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:2: Got 0
richole.c:5338: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:3: Got 0
richole.c:5338: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:4: Got 0
richole.c:5338: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:2: Got 0
richole.c:5330: Test failed: f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:3: Got 0
richole.c:5330: Test failed: f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:4: Got 0
richole.c:5330: Test failed: f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:2: Got 0
richole.c:5330: Test failed: f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:3: Got 0
richole.c:5330: Test failed: f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:4: Got 0
richole.c:5330: Test failed: f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:0: Got 0
richole.c:5348: Test failed: 10:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:1: Got 0
richole.c:5348: Test failed: 10:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:2: Got 0
richole.c:5348: Test failed: 10:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:3: Got 0
richole.c:5348: Test failed: 10:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:4: Got 0
richole.c:5348: Test failed: 10:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 10:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:0: Got 0
richole.c:5348: Test failed: 11:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:1: Got 0
richole.c:5348: Test failed: 11:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:2: Got 0
richole.c:5348: Test failed: 11:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:3: Got 0
richole.c:5348: Test failed: 11:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:4: Got 0
richole.c:5348: Test failed: 11:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 11:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 12:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 13:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:0: Got 0
richole.c:5338: Test failed: 14:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:1: Got 0
richole.c:5338: Test failed: 14:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:2: Got 0
richole.c:5338: Test failed: 14:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:3: Got 0
richole.c:5338: Test failed: 14:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:4: Got 0
richole.c:5338: Test failed: 14:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 14:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:0: Got 0
richole.c:5348: Test failed: 15:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:1: Got 0
richole.c:5348: Test failed: 15:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:2: Got 0
richole.c:5348: Test failed: 15:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:3: Got 0
richole.c:5348: Test failed: 15:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:4: Got 0
richole.c:5348: Test failed: 15:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 15:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5338: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5353: Test failed: 16:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5338: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5353: Test failed: 16:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5338: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5353: Test failed: 16:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5338: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5353: Test failed: 16:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5338: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5353: Test failed: 16:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5338: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5353: Test failed: 16:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5338: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5353: Test failed: 16:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5338: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5353: Test failed: 16:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5338: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5353: Test failed: 16:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5338: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5353: Test failed: 16:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5338: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5353: Test failed: 16:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5338: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5353: Test failed: 16:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5338: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5353: Test failed: 16:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5338: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5353: Test failed: 16:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 16:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5330: Test failed: 17:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5330: Test failed: 17:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5330: Test failed: 17:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5330: Test failed: 17:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5330: Test failed: 17:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5330: Test failed: 17:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 17:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:0: Got 0
richole.c:5348: Test failed: 18:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:1: Got 0
richole.c:5348: Test failed: 18:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:2: Got 0
richole.c:5348: Test failed: 18:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:3: Got 0
richole.c:5348: Test failed: 18:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:4: Got 0
richole.c:5348: Test failed: 18:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 18:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:0: Got 0
richole.c:5348: Test failed: 19:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:1: Got 0
richole.c:5348: Test failed: 19:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:2: Got 0
richole.c:5348: Test failed: 19:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:3: Got 0
richole.c:5348: Test failed: 19:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:4: Got 0
richole.c:5348: Test failed: 19:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 19:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:0: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:1: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:2: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:3: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:4: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:4: expected state 2, got 0
Report validation errors:
riched20:richole prints too much data (259067 bytes)
=== debian11 (32 bit Japanese:Japan report) ===
riched20:
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:0: Got 0
richole.c:5378: Test failed: 0:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0>0:0+: Got 0
richole.c:5378: Test failed: 0:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:1: Got 0
richole.c:5378: Test failed: 0:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:2: Got 0
richole.c:5378: Test failed: 0:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:3: Got 0
richole.c:5378: Test failed: 0:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:4: Got 0
richole.c:5378: Test failed: 0:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 0:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:1: Got 0
richole.c:5330: Test failed: 1:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:0: Got 0
richole.c:5378: Test failed: 2:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:0+: Got 0
richole.c:5378: Test failed: 2:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:1: Got 0
richole.c:5378: Test failed: 2:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:1+: Got 0
richole.c:5378: Test failed: 2:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:2: Got 0
richole.c:5378: Test failed: 2:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:3: Got 0
richole.c:5378: Test failed: 2:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:4: Got 0
richole.c:5378: Test failed: 2:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:0: Got 0
richole.c:5378: Test failed: 2:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:0+: Got 0
richole.c:5378: Test failed: 2:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:1: Got 0
richole.c:5378: Test failed: 2:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:1+: Got 0
richole.c:5378: Test failed: 2:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:2: Got 0
richole.c:5378: Test failed: 2:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:3: Got 0
richole.c:5378: Test failed: 2:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:4: Got 0
richole.c:5378: Test failed: 2:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 2:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:2: Got 0
richole.c:5330: Test failed: 3:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:3: Got 0
richole.c:5330: Test failed: 3:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:4: Got 0
richole.c:5330: Test failed: 3:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:2: Got 0
richole.c:5330: Test failed: 3:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:3: Got 0
richole.c:5330: Test failed: 3:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:4: Got 0
richole.c:5330: Test failed: 3:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 3:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:0: Got 0
richole.c:5338: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0>0:0+: Got 0
richole.c:5338: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:1: Got 0
richole.c:5338: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:2: Got 0
richole.c:5338: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:3: Got 0
richole.c:5338: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:4: Got 0
richole.c:5338: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 4:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:1: Got 0
richole.c:5330: Test failed: 5:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:2: Got 0
richole.c:5330: Test failed: 5:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:3: Got 0
richole.c:5330: Test failed: 5:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:4: Got 0
richole.c:5330: Test failed: 5:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 5:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:0: Got 0
richole.c:5338: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:0+: Got 0
richole.c:5338: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:1: Got 0
richole.c:5338: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:1+: Got 0
richole.c:5338: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:2: Got 0
richole.c:5338: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:3: Got 0
richole.c:5338: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:4: Got 0
richole.c:5338: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:0: Got 0
richole.c:5338: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:0+: Got 0
richole.c:5338: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:1: Got 0
richole.c:5338: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:1+: Got 0
richole.c:5338: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:2: Got 0
richole.c:5338: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:3: Got 0
richole.c:5338: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:4: Got 0
richole.c:5338: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 6:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:2: Got 0
richole.c:5330: Test failed: 7:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:3: Got 0
richole.c:5330: Test failed: 7:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:4: Got 0
richole.c:5330: Test failed: 7:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:2: Got 0
richole.c:5330: Test failed: 7:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:3: Got 0
richole.c:5330: Test failed: 7:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:4: Got 0
richole.c:5330: Test failed: 7:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 7:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:0: Got 0
richole.c:5378: Test failed: 8:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0>0:0+: Got 0
richole.c:5378: Test failed: 8:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:1: Got 0
richole.c:5378: Test failed: 8:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:2: Got 0
richole.c:5378: Test failed: 8:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:3: Got 0
richole.c:5378: Test failed: 8:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:4: Got 0
richole.c:5378: Test failed: 8:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 8:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:1: Got 0
richole.c:5330: Test failed: 9:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:2: Got 0
richole.c:5330: Test failed: 9:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:3: Got 0
richole.c:5330: Test failed: 9:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:4: Got 0
richole.c:5330: Test failed: 9:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 9:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:0: Got 0
richole.c:5378: Test failed: a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:0+: Got 0
richole.c:5378: Test failed: a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:1: Got 0
richole.c:5378: Test failed: a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:1+: Got 0
richole.c:5378: Test failed: a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:2: Got 0
richole.c:5378: Test failed: a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:3: Got 0
richole.c:5378: Test failed: a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:4: Got 0
richole.c:5378: Test failed: a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:0: Got 0
richole.c:5378: Test failed: a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:0+: Got 0
richole.c:5378: Test failed: a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:1: Got 0
richole.c:5378: Test failed: a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:1+: Got 0
richole.c:5378: Test failed: a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:2: Got 0
richole.c:5378: Test failed: a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:3: Got 0
richole.c:5378: Test failed: a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:4: Got 0
richole.c:5378: Test failed: a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:2: Got 0
richole.c:5330: Test failed: b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:3: Got 0
richole.c:5330: Test failed: b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:4: Got 0
richole.c:5330: Test failed: b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:2: Got 0
richole.c:5330: Test failed: b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:3: Got 0
richole.c:5330: Test failed: b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:4: Got 0
richole.c:5330: Test failed: b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:0: Got 0
richole.c:5338: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0>0:0+: Got 0
richole.c:5338: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:1: Got 0
richole.c:5338: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:2: Got 0
richole.c:5338: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:3: Got 0
richole.c:5338: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:4: Got 0
richole.c:5338: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:1: Got 0
richole.c:5330: Test failed: d:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:2: Got 0
richole.c:5330: Test failed: d:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:3: Got 0
richole.c:5330: Test failed: d:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:4: Got 0
richole.c:5330: Test failed: d:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:0: Got 0
richole.c:5338: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:0+: Got 0
richole.c:5338: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:1: Got 0
richole.c:5338: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:1+: Got 0
richole.c:5338: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:2: Got 0
richole.c:5338: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:3: Got 0
richole.c:5338: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:4: Got 0
richole.c:5338: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:0: Got 0
richole.c:5338: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:0+: Got 0
richole.c:5338: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:1: Got 0
richole.c:5338: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:1+: Got 0
richole.c:5338: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:2: Got 0
richole.c:5338: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:3: Got 0
richole.c:5338: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:4: Got 0
richole.c:5338: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:2: Got 0
richole.c:5330: Test failed: f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:3: Got 0
richole.c:5330: Test failed: f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:4: Got 0
richole.c:5330: Test failed: f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:2: Got 0
richole.c:5330: Test failed: f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:3: Got 0
richole.c:5330: Test failed: f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:4: Got 0
richole.c:5330: Test failed: f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:0: Got 0
richole.c:5348: Test failed: 10:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:1: Got 0
richole.c:5348: Test failed: 10:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:2: Got 0
richole.c:5348: Test failed: 10:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:3: Got 0
richole.c:5348: Test failed: 10:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:4: Got 0
richole.c:5348: Test failed: 10:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 10:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:0: Got 0
richole.c:5348: Test failed: 11:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:1: Got 0
richole.c:5348: Test failed: 11:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:2: Got 0
richole.c:5348: Test failed: 11:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:3: Got 0
richole.c:5348: Test failed: 11:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:4: Got 0
richole.c:5348: Test failed: 11:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 11:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 12:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 13:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:0: Got 0
richole.c:5338: Test failed: 14:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:1: Got 0
richole.c:5338: Test failed: 14:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:2: Got 0
richole.c:5338: Test failed: 14:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:3: Got 0
richole.c:5338: Test failed: 14:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:4: Got 0
richole.c:5338: Test failed: 14:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 14:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:0: Got 0
richole.c:5348: Test failed: 15:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:1: Got 0
richole.c:5348: Test failed: 15:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:2: Got 0
richole.c:5348: Test failed: 15:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:3: Got 0
richole.c:5348: Test failed: 15:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:4: Got 0
richole.c:5348: Test failed: 15:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 15:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5338: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5353: Test failed: 16:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5338: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5353: Test failed: 16:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5338: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5353: Test failed: 16:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5338: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5353: Test failed: 16:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5338: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5353: Test failed: 16:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5338: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5353: Test failed: 16:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5338: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5353: Test failed: 16:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5338: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5353: Test failed: 16:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5338: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5353: Test failed: 16:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5338: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5353: Test failed: 16:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5338: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5353: Test failed: 16:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5338: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5353: Test failed: 16:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5338: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5353: Test failed: 16:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5338: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5353: Test failed: 16:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 16:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5330: Test failed: 17:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5330: Test failed: 17:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5330: Test failed: 17:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5330: Test failed: 17:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5330: Test failed: 17:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5330: Test failed: 17:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 17:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:0: Got 0
richole.c:5348: Test failed: 18:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:1: Got 0
richole.c:5348: Test failed: 18:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:2: Got 0
richole.c:5348: Test failed: 18:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:3: Got 0
richole.c:5348: Test failed: 18:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:4: Got 0
richole.c:5348: Test failed: 18:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 18:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:0: Got 0
richole.c:5348: Test failed: 19:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:1: Got 0
richole.c:5348: Test failed: 19:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:2: Got 0
richole.c:5348: Test failed: 19:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:3: Got 0
richole.c:5348: Test failed: 19:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:4: Got 0
richole.c:5348: Test failed: 19:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 19:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:0: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:1: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:2: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:3: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:4: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:4: expected state 2, got 0
Report validation errors:
riched20:richole prints too much data (259067 bytes)
=== debian11 (32 bit Chinese:China report) ===
riched20:
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:0: Got 0
richole.c:5378: Test failed: 0:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0>0:0+: Got 0
richole.c:5378: Test failed: 0:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:1: Got 0
richole.c:5378: Test failed: 0:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:2: Got 0
richole.c:5378: Test failed: 0:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:3: Got 0
richole.c:5378: Test failed: 0:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:4: Got 0
richole.c:5378: Test failed: 0:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 0:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:1: Got 0
richole.c:5330: Test failed: 1:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:0: Got 0
richole.c:5378: Test failed: 2:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:0+: Got 0
richole.c:5378: Test failed: 2:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:1: Got 0
richole.c:5378: Test failed: 2:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:1+: Got 0
richole.c:5378: Test failed: 2:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:2: Got 0
richole.c:5378: Test failed: 2:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:3: Got 0
richole.c:5378: Test failed: 2:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:4: Got 0
richole.c:5378: Test failed: 2:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:0: Got 0
richole.c:5378: Test failed: 2:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:0+: Got 0
richole.c:5378: Test failed: 2:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:1: Got 0
richole.c:5378: Test failed: 2:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:1+: Got 0
richole.c:5378: Test failed: 2:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:2: Got 0
richole.c:5378: Test failed: 2:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:3: Got 0
richole.c:5378: Test failed: 2:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:4: Got 0
richole.c:5378: Test failed: 2:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 2:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:2: Got 0
richole.c:5330: Test failed: 3:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:3: Got 0
richole.c:5330: Test failed: 3:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:4: Got 0
richole.c:5330: Test failed: 3:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:2: Got 0
richole.c:5330: Test failed: 3:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:3: Got 0
richole.c:5330: Test failed: 3:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:4: Got 0
richole.c:5330: Test failed: 3:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 3:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:0: Got 0
richole.c:5338: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0>0:0+: Got 0
richole.c:5338: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:1: Got 0
richole.c:5338: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:2: Got 0
richole.c:5338: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:3: Got 0
richole.c:5338: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:4: Got 0
richole.c:5338: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 4:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:1: Got 0
richole.c:5330: Test failed: 5:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:2: Got 0
richole.c:5330: Test failed: 5:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:3: Got 0
richole.c:5330: Test failed: 5:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:4: Got 0
richole.c:5330: Test failed: 5:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 5:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:0: Got 0
richole.c:5338: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:0+: Got 0
richole.c:5338: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:1: Got 0
richole.c:5338: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:1+: Got 0
richole.c:5338: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:2: Got 0
richole.c:5338: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:3: Got 0
richole.c:5338: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:4: Got 0
richole.c:5338: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:0: Got 0
richole.c:5338: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:0+: Got 0
richole.c:5338: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:1: Got 0
richole.c:5338: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:1+: Got 0
richole.c:5338: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:2: Got 0
richole.c:5338: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:3: Got 0
richole.c:5338: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:4: Got 0
richole.c:5338: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 6:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:2: Got 0
richole.c:5330: Test failed: 7:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:3: Got 0
richole.c:5330: Test failed: 7:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:4: Got 0
richole.c:5330: Test failed: 7:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:2: Got 0
richole.c:5330: Test failed: 7:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:3: Got 0
richole.c:5330: Test failed: 7:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:4: Got 0
richole.c:5330: Test failed: 7:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 7:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:0: Got 0
richole.c:5378: Test failed: 8:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0>0:0+: Got 0
richole.c:5378: Test failed: 8:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:1: Got 0
richole.c:5378: Test failed: 8:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:2: Got 0
richole.c:5378: Test failed: 8:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:3: Got 0
richole.c:5378: Test failed: 8:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:4: Got 0
richole.c:5378: Test failed: 8:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 8:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:1: Got 0
richole.c:5330: Test failed: 9:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:2: Got 0
richole.c:5330: Test failed: 9:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:3: Got 0
richole.c:5330: Test failed: 9:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:4: Got 0
richole.c:5330: Test failed: 9:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 9:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:0: Got 0
richole.c:5378: Test failed: a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:0+: Got 0
richole.c:5378: Test failed: a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:1: Got 0
richole.c:5378: Test failed: a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:1+: Got 0
richole.c:5378: Test failed: a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:2: Got 0
richole.c:5378: Test failed: a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:3: Got 0
richole.c:5378: Test failed: a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:4: Got 0
richole.c:5378: Test failed: a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:0: Got 0
richole.c:5378: Test failed: a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:0+: Got 0
richole.c:5378: Test failed: a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:1: Got 0
richole.c:5378: Test failed: a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:1+: Got 0
richole.c:5378: Test failed: a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:2: Got 0
richole.c:5378: Test failed: a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:3: Got 0
richole.c:5378: Test failed: a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:4: Got 0
richole.c:5378: Test failed: a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:2: Got 0
richole.c:5330: Test failed: b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:3: Got 0
richole.c:5330: Test failed: b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:4: Got 0
richole.c:5330: Test failed: b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:2: Got 0
richole.c:5330: Test failed: b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:3: Got 0
richole.c:5330: Test failed: b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:4: Got 0
richole.c:5330: Test failed: b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:0: Got 0
richole.c:5338: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0>0:0+: Got 0
richole.c:5338: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:1: Got 0
richole.c:5338: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:2: Got 0
richole.c:5338: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:3: Got 0
richole.c:5338: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:4: Got 0
richole.c:5338: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:1: Got 0
richole.c:5330: Test failed: d:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:2: Got 0
richole.c:5330: Test failed: d:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:3: Got 0
richole.c:5330: Test failed: d:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:4: Got 0
richole.c:5330: Test failed: d:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:0: Got 0
richole.c:5338: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:0+: Got 0
richole.c:5338: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:1: Got 0
richole.c:5338: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:1+: Got 0
richole.c:5338: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:2: Got 0
richole.c:5338: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:3: Got 0
richole.c:5338: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:4: Got 0
richole.c:5338: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:0: Got 0
richole.c:5338: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:0+: Got 0
richole.c:5338: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:1: Got 0
richole.c:5338: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:1+: Got 0
richole.c:5338: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:2: Got 0
richole.c:5338: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:3: Got 0
richole.c:5338: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:4: Got 0
richole.c:5338: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:2: Got 0
richole.c:5330: Test failed: f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:3: Got 0
richole.c:5330: Test failed: f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:4: Got 0
richole.c:5330: Test failed: f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:2: Got 0
richole.c:5330: Test failed: f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:3: Got 0
richole.c:5330: Test failed: f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:4: Got 0
richole.c:5330: Test failed: f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:0: Got 0
richole.c:5348: Test failed: 10:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:1: Got 0
richole.c:5348: Test failed: 10:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:2: Got 0
richole.c:5348: Test failed: 10:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:3: Got 0
richole.c:5348: Test failed: 10:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:4: Got 0
richole.c:5348: Test failed: 10:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 10:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:0: Got 0
richole.c:5348: Test failed: 11:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:1: Got 0
richole.c:5348: Test failed: 11:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:2: Got 0
richole.c:5348: Test failed: 11:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:3: Got 0
richole.c:5348: Test failed: 11:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:4: Got 0
richole.c:5348: Test failed: 11:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 11:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 12:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 13:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:0: Got 0
richole.c:5338: Test failed: 14:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:1: Got 0
richole.c:5338: Test failed: 14:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:2: Got 0
richole.c:5338: Test failed: 14:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:3: Got 0
richole.c:5338: Test failed: 14:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:4: Got 0
richole.c:5338: Test failed: 14:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 14:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:0: Got 0
richole.c:5348: Test failed: 15:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:1: Got 0
richole.c:5348: Test failed: 15:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:2: Got 0
richole.c:5348: Test failed: 15:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:3: Got 0
richole.c:5348: Test failed: 15:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:4: Got 0
richole.c:5348: Test failed: 15:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 15:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5338: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5353: Test failed: 16:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5338: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5353: Test failed: 16:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5338: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5353: Test failed: 16:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5338: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5353: Test failed: 16:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5338: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5353: Test failed: 16:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5338: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5353: Test failed: 16:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5338: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5353: Test failed: 16:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5338: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5353: Test failed: 16:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5338: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5353: Test failed: 16:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5338: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5353: Test failed: 16:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5338: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5353: Test failed: 16:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5338: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5353: Test failed: 16:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5338: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5353: Test failed: 16:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5338: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5353: Test failed: 16:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 16:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5330: Test failed: 17:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5330: Test failed: 17:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5330: Test failed: 17:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5330: Test failed: 17:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5330: Test failed: 17:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5330: Test failed: 17:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 17:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:0: Got 0
richole.c:5348: Test failed: 18:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:1: Got 0
richole.c:5348: Test failed: 18:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:2: Got 0
richole.c:5348: Test failed: 18:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:3: Got 0
richole.c:5348: Test failed: 18:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:4: Got 0
richole.c:5348: Test failed: 18:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 18:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:0: Got 0
richole.c:5348: Test failed: 19:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:1: Got 0
richole.c:5348: Test failed: 19:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:2: Got 0
richole.c:5348: Test failed: 19:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:3: Got 0
richole.c:5348: Test failed: 19:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:4: Got 0
richole.c:5348: Test failed: 19:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 19:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:0: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:1: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:2: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:3: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:4: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:4: expected state 2, got 0
Report validation errors:
riched20:richole prints too much data (259067 bytes)
=== debian11 (32 bit WoW report) ===
riched20:
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:0: Got 0
richole.c:5378: Test failed: 0:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0>0:0+: Got 0
richole.c:5378: Test failed: 0:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:1: Got 0
richole.c:5378: Test failed: 0:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:2: Got 0
richole.c:5378: Test failed: 0:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:3: Got 0
richole.c:5378: Test failed: 0:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:4: Got 0
richole.c:5378: Test failed: 0:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 0:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:1: Got 0
richole.c:5330: Test failed: 1:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:0: Got 0
richole.c:5378: Test failed: 2:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:0+: Got 0
richole.c:5378: Test failed: 2:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:1: Got 0
richole.c:5378: Test failed: 2:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:1+: Got 0
richole.c:5378: Test failed: 2:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:2: Got 0
richole.c:5378: Test failed: 2:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:3: Got 0
richole.c:5378: Test failed: 2:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:4: Got 0
richole.c:5378: Test failed: 2:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:0: Got 0
richole.c:5378: Test failed: 2:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:0+: Got 0
richole.c:5378: Test failed: 2:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:1: Got 0
richole.c:5378: Test failed: 2:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:1+: Got 0
richole.c:5378: Test failed: 2:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:2: Got 0
richole.c:5378: Test failed: 2:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:3: Got 0
richole.c:5378: Test failed: 2:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:4: Got 0
richole.c:5378: Test failed: 2:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 2:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:2: Got 0
richole.c:5330: Test failed: 3:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:3: Got 0
richole.c:5330: Test failed: 3:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:4: Got 0
richole.c:5330: Test failed: 3:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:2: Got 0
richole.c:5330: Test failed: 3:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:3: Got 0
richole.c:5330: Test failed: 3:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:4: Got 0
richole.c:5330: Test failed: 3:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 3:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:0: Got 0
richole.c:5338: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0>0:0+: Got 0
richole.c:5338: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:1: Got 0
richole.c:5338: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:2: Got 0
richole.c:5338: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:3: Got 0
richole.c:5338: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:4: Got 0
richole.c:5338: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 4:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:1: Got 0
richole.c:5330: Test failed: 5:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:2: Got 0
richole.c:5330: Test failed: 5:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:3: Got 0
richole.c:5330: Test failed: 5:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:4: Got 0
richole.c:5330: Test failed: 5:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 5:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:0: Got 0
richole.c:5338: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:0+: Got 0
richole.c:5338: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:1: Got 0
richole.c:5338: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:1+: Got 0
richole.c:5338: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:2: Got 0
richole.c:5338: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:3: Got 0
richole.c:5338: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:4: Got 0
richole.c:5338: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:0: Got 0
richole.c:5338: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:0+: Got 0
richole.c:5338: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:1: Got 0
richole.c:5338: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:1+: Got 0
richole.c:5338: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:2: Got 0
richole.c:5338: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:3: Got 0
richole.c:5338: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:4: Got 0
richole.c:5338: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 6:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:2: Got 0
richole.c:5330: Test failed: 7:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:3: Got 0
richole.c:5330: Test failed: 7:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:4: Got 0
richole.c:5330: Test failed: 7:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:2: Got 0
richole.c:5330: Test failed: 7:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:3: Got 0
richole.c:5330: Test failed: 7:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:4: Got 0
richole.c:5330: Test failed: 7:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 7:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:0: Got 0
richole.c:5378: Test failed: 8:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0>0:0+: Got 0
richole.c:5378: Test failed: 8:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:1: Got 0
richole.c:5378: Test failed: 8:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:2: Got 0
richole.c:5378: Test failed: 8:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:3: Got 0
richole.c:5378: Test failed: 8:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:4: Got 0
richole.c:5378: Test failed: 8:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 8:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:1: Got 0
richole.c:5330: Test failed: 9:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:2: Got 0
richole.c:5330: Test failed: 9:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:3: Got 0
richole.c:5330: Test failed: 9:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:4: Got 0
richole.c:5330: Test failed: 9:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 9:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:0: Got 0
richole.c:5378: Test failed: a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:0+: Got 0
richole.c:5378: Test failed: a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:1: Got 0
richole.c:5378: Test failed: a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:1+: Got 0
richole.c:5378: Test failed: a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:2: Got 0
richole.c:5378: Test failed: a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:3: Got 0
richole.c:5378: Test failed: a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:4: Got 0
richole.c:5378: Test failed: a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:0: Got 0
richole.c:5378: Test failed: a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:0+: Got 0
richole.c:5378: Test failed: a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:1: Got 0
richole.c:5378: Test failed: a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:1+: Got 0
richole.c:5378: Test failed: a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:2: Got 0
richole.c:5378: Test failed: a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:3: Got 0
richole.c:5378: Test failed: a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:4: Got 0
richole.c:5378: Test failed: a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:2: Got 0
richole.c:5330: Test failed: b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:3: Got 0
richole.c:5330: Test failed: b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:4: Got 0
richole.c:5330: Test failed: b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:2: Got 0
richole.c:5330: Test failed: b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:3: Got 0
richole.c:5330: Test failed: b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:4: Got 0
richole.c:5330: Test failed: b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:0: Got 0
richole.c:5338: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0>0:0+: Got 0
richole.c:5338: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:1: Got 0
richole.c:5338: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:2: Got 0
richole.c:5338: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:3: Got 0
richole.c:5338: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:4: Got 0
richole.c:5338: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:1: Got 0
richole.c:5330: Test failed: d:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:2: Got 0
richole.c:5330: Test failed: d:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:3: Got 0
richole.c:5330: Test failed: d:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:4: Got 0
richole.c:5330: Test failed: d:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:0: Got 0
richole.c:5338: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:0+: Got 0
richole.c:5338: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:1: Got 0
richole.c:5338: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:1+: Got 0
richole.c:5338: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:2: Got 0
richole.c:5338: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:3: Got 0
richole.c:5338: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:4: Got 0
richole.c:5338: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:0: Got 0
richole.c:5338: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:0+: Got 0
richole.c:5338: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:1: Got 0
richole.c:5338: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:1+: Got 0
richole.c:5338: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:2: Got 0
richole.c:5338: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:3: Got 0
richole.c:5338: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:4: Got 0
richole.c:5338: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:2: Got 0
richole.c:5330: Test failed: f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:3: Got 0
richole.c:5330: Test failed: f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:4: Got 0
richole.c:5330: Test failed: f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:2: Got 0
richole.c:5330: Test failed: f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:3: Got 0
richole.c:5330: Test failed: f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:4: Got 0
richole.c:5330: Test failed: f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:0: Got 0
richole.c:5348: Test failed: 10:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:1: Got 0
richole.c:5348: Test failed: 10:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:2: Got 0
richole.c:5348: Test failed: 10:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:3: Got 0
richole.c:5348: Test failed: 10:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:4: Got 0
richole.c:5348: Test failed: 10:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 10:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:0: Got 0
richole.c:5348: Test failed: 11:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:1: Got 0
richole.c:5348: Test failed: 11:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:2: Got 0
richole.c:5348: Test failed: 11:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:3: Got 0
richole.c:5348: Test failed: 11:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:4: Got 0
richole.c:5348: Test failed: 11:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 11:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 12:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 13:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:0: Got 0
richole.c:5338: Test failed: 14:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:1: Got 0
richole.c:5338: Test failed: 14:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:2: Got 0
richole.c:5338: Test failed: 14:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:3: Got 0
richole.c:5338: Test failed: 14:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:4: Got 0
richole.c:5338: Test failed: 14:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 14:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:0: Got 0
richole.c:5348: Test failed: 15:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:1: Got 0
richole.c:5348: Test failed: 15:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:2: Got 0
richole.c:5348: Test failed: 15:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:3: Got 0
richole.c:5348: Test failed: 15:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:4: Got 0
richole.c:5348: Test failed: 15:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 15:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5338: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5353: Test failed: 16:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5338: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5353: Test failed: 16:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5338: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5353: Test failed: 16:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5338: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5353: Test failed: 16:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5338: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5353: Test failed: 16:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5338: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5353: Test failed: 16:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5338: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5353: Test failed: 16:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5338: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5353: Test failed: 16:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5338: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5353: Test failed: 16:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5338: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5353: Test failed: 16:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5338: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5353: Test failed: 16:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5338: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5353: Test failed: 16:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5338: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5353: Test failed: 16:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5338: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5353: Test failed: 16:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 16:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5330: Test failed: 17:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5330: Test failed: 17:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5330: Test failed: 17:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5330: Test failed: 17:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5330: Test failed: 17:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5330: Test failed: 17:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 17:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:0: Got 0
richole.c:5348: Test failed: 18:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:1: Got 0
richole.c:5348: Test failed: 18:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:2: Got 0
richole.c:5348: Test failed: 18:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:3: Got 0
richole.c:5348: Test failed: 18:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:4: Got 0
richole.c:5348: Test failed: 18:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 18:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:0: Got 0
richole.c:5348: Test failed: 19:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:1: Got 0
richole.c:5348: Test failed: 19:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:2: Got 0
richole.c:5348: Test failed: 19:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:3: Got 0
richole.c:5348: Test failed: 19:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:4: Got 0
richole.c:5348: Test failed: 19:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 19:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:0: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:1: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:2: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:3: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:4: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:4: expected state 2, got 0
Report validation errors:
riched20:richole prints too much data (259067 bytes)
=== debian11 (64 bit WoW report) ===
riched20:
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:0: Got 0
richole.c:5378: Test failed: 0:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0>0:0+: Got 0
richole.c:5378: Test failed: 0:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:1: Got 0
richole.c:5378: Test failed: 0:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:2: Got 0
richole.c:5378: Test failed: 0:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:3: Got 0
richole.c:5378: Test failed: 0:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 0:0:0+>?:4: Got 0
richole.c:5378: Test failed: 0:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 0:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 0:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 0:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 0:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 0:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 0:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:1: Got 0
richole.c:5330: Test failed: 1:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:0: Got 0
richole.c:5378: Test failed: 2:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:0+: Got 0
richole.c:5378: Test failed: 2:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:1: Got 0
richole.c:5378: Test failed: 2:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0>0:1+: Got 0
richole.c:5378: Test failed: 2:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:2: Got 0
richole.c:5378: Test failed: 2:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:3: Got 0
richole.c:5378: Test failed: 2:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:0+>?:4: Got 0
richole.c:5378: Test failed: 2:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:0: Got 0
richole.c:5378: Test failed: 2:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:0+: Got 0
richole.c:5378: Test failed: 2:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:1: Got 0
richole.c:5378: Test failed: 2:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1>0:1+: Got 0
richole.c:5378: Test failed: 2:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:2: Got 0
richole.c:5378: Test failed: 2:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:3: Got 0
richole.c:5378: Test failed: 2:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 2:0:1+>?:4: Got 0
richole.c:5378: Test failed: 2:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 2:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 2:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 2:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 2:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 2:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 2:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:2: Got 0
richole.c:5330: Test failed: 3:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:3: Got 0
richole.c:5330: Test failed: 3:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:0+>?:4: Got 0
richole.c:5330: Test failed: 3:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:2: Got 0
richole.c:5330: Test failed: 3:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:3: Got 0
richole.c:5330: Test failed: 3:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 3:0:1+>?:4: Got 0
richole.c:5330: Test failed: 3:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 3:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 3:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 3:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 3:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 3:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:0: Got 0
richole.c:5338: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0>0:0+: Got 0
richole.c:5338: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:1: Got 0
richole.c:5338: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:2: Got 0
richole.c:5338: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:3: Got 0
richole.c:5338: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 4:0:0+>?:4: Got 0
richole.c:5338: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 4:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 4:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 4:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 4:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 4:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 4:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 4:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:1: Got 0
richole.c:5330: Test failed: 5:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:2: Got 0
richole.c:5330: Test failed: 5:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:3: Got 0
richole.c:5330: Test failed: 5:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 5:0:0+>?:4: Got 0
richole.c:5330: Test failed: 5:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 5:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 5:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 5:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 5:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 5:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:0: Got 0
richole.c:5338: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:0+: Got 0
richole.c:5338: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:1: Got 0
richole.c:5338: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0>0:1+: Got 0
richole.c:5338: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:2: Got 0
richole.c:5338: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:3: Got 0
richole.c:5338: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:0+>?:4: Got 0
richole.c:5338: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:0: Got 0
richole.c:5338: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:0+: Got 0
richole.c:5338: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:1: Got 0
richole.c:5338: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1>0:1+: Got 0
richole.c:5338: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:2: Got 0
richole.c:5338: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:3: Got 0
richole.c:5338: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 6:0:1+>?:4: Got 0
richole.c:5338: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 6:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 6:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 6:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 6:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 6:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 6:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 6:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:2: Got 0
richole.c:5330: Test failed: 7:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:3: Got 0
richole.c:5330: Test failed: 7:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:0+>?:4: Got 0
richole.c:5330: Test failed: 7:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:2: Got 0
richole.c:5330: Test failed: 7:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:3: Got 0
richole.c:5330: Test failed: 7:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 7:0:1+>?:4: Got 0
richole.c:5330: Test failed: 7:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 7:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 7:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 7:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 7:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 7:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:0: Got 0
richole.c:5378: Test failed: 8:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0>0:0+: Got 0
richole.c:5378: Test failed: 8:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:1: Got 0
richole.c:5378: Test failed: 8:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:2: Got 0
richole.c:5378: Test failed: 8:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:3: Got 0
richole.c:5378: Test failed: 8:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 8:0:0+>?:4: Got 0
richole.c:5378: Test failed: 8:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 8:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 8:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 8:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 8:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 8:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 8:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:1: Got 0
richole.c:5330: Test failed: 9:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:2: Got 0
richole.c:5330: Test failed: 9:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:3: Got 0
richole.c:5330: Test failed: 9:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 9:0:0+>?:4: Got 0
richole.c:5330: Test failed: 9:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 9:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 9:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 9:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 9:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 9:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:0: Got 0
richole.c:5378: Test failed: a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:0+: Got 0
richole.c:5378: Test failed: a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:1: Got 0
richole.c:5378: Test failed: a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0>0:1+: Got 0
richole.c:5378: Test failed: a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:2: Got 0
richole.c:5378: Test failed: a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:3: Got 0
richole.c:5378: Test failed: a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:0+>?:4: Got 0
richole.c:5378: Test failed: a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:0: Got 0
richole.c:5378: Test failed: a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:0+: Got 0
richole.c:5378: Test failed: a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:1: Got 0
richole.c:5378: Test failed: a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1>0:1+: Got 0
richole.c:5378: Test failed: a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:2: Got 0
richole.c:5378: Test failed: a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:3: Got 0
richole.c:5378: Test failed: a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: a:0:1+>?:4: Got 0
richole.c:5378: Test failed: a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:2: Got 0
richole.c:5330: Test failed: b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:3: Got 0
richole.c:5330: Test failed: b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:0+>?:4: Got 0
richole.c:5330: Test failed: b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:2: Got 0
richole.c:5330: Test failed: b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:3: Got 0
richole.c:5330: Test failed: b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: b:0:1+>?:4: Got 0
richole.c:5330: Test failed: b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:0: Got 0
richole.c:5338: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0>0:0+: Got 0
richole.c:5338: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:1: Got 0
richole.c:5338: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:2: Got 0
richole.c:5338: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:3: Got 0
richole.c:5338: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: c:0:0+>?:4: Got 0
richole.c:5338: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: c:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:1: Got 0
richole.c:5330: Test failed: d:0:0>0:1+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:2: Got 0
richole.c:5330: Test failed: d:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:3: Got 0
richole.c:5330: Test failed: d:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: d:0:0+>?:4: Got 0
richole.c:5330: Test failed: d:0:0>0:4+: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:0: Got 0
richole.c:5338: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:0+: Got 0
richole.c:5338: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:1: Got 0
richole.c:5338: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0>0:1+: Got 0
richole.c:5338: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:2: Got 0
richole.c:5338: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:3: Got 0
richole.c:5338: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:0+>?:4: Got 0
richole.c:5338: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:0: Got 0
richole.c:5338: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:0+: Got 0
richole.c:5338: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:1: Got 0
richole.c:5338: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1>0:1+: Got 0
richole.c:5338: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:2: Got 0
richole.c:5338: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:3: Got 0
richole.c:5338: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: e:0:1+>?:4: Got 0
richole.c:5338: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:2: Got 0
richole.c:5330: Test failed: f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:3: Got 0
richole.c:5330: Test failed: f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:0+>?:4: Got 0
richole.c:5330: Test failed: f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:2: Got 0
richole.c:5330: Test failed: f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:3: Got 0
richole.c:5330: Test failed: f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: f:0:1+>?:4: Got 0
richole.c:5330: Test failed: f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: f:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:0: Got 0
richole.c:5348: Test failed: 10:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:1: Got 0
richole.c:5348: Test failed: 10:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:2: Got 0
richole.c:5348: Test failed: 10:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:3: Got 0
richole.c:5348: Test failed: 10:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 10:0:0+>?:4: Got 0
richole.c:5348: Test failed: 10:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 10:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 10:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 10:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 10:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 10:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:0: Got 0
richole.c:5348: Test failed: 11:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:1: Got 0
richole.c:5348: Test failed: 11:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:2: Got 0
richole.c:5348: Test failed: 11:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:3: Got 0
richole.c:5348: Test failed: 11:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 11:0:0+>?:4: Got 0
richole.c:5348: Test failed: 11:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 11:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 11:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 11:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 11:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 11:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:0: Got 0
richole.c:5353: Test failed: 12:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:0+: Got 0
richole.c:5353: Test failed: 12:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:1: Got 0
richole.c:5353: Test failed: 12:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0>0:1+: Got 0
richole.c:5353: Test failed: 12:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:2: Got 0
richole.c:5353: Test failed: 12:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:3: Got 0
richole.c:5353: Test failed: 12:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:0+>?:4: Got 0
richole.c:5353: Test failed: 12:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:0: Got 0
richole.c:5353: Test failed: 12:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:0+: Got 0
richole.c:5353: Test failed: 12:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:1: Got 0
richole.c:5353: Test failed: 12:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1>0:1+: Got 0
richole.c:5353: Test failed: 12:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:2: Got 0
richole.c:5353: Test failed: 12:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:3: Got 0
richole.c:5353: Test failed: 12:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 12:0:1+>?:4: Got 0
richole.c:5353: Test failed: 12:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 12:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 12:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 12:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 12:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 12:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 12:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 12:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:0: Got 0
richole.c:5353: Test failed: 13:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:0+: Got 0
richole.c:5353: Test failed: 13:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:1: Got 0
richole.c:5353: Test failed: 13:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0>0:1+: Got 0
richole.c:5353: Test failed: 13:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:2: Got 0
richole.c:5353: Test failed: 13:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:3: Got 0
richole.c:5353: Test failed: 13:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:0+>?:4: Got 0
richole.c:5353: Test failed: 13:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:0: Got 0
richole.c:5353: Test failed: 13:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:0+: Got 0
richole.c:5353: Test failed: 13:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:1: Got 0
richole.c:5353: Test failed: 13:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1>0:1+: Got 0
richole.c:5353: Test failed: 13:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:2: Got 0
richole.c:5353: Test failed: 13:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:3: Got 0
richole.c:5353: Test failed: 13:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 13:0:1+>?:4: Got 0
richole.c:5353: Test failed: 13:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 13:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 13:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5379: Test failed: 13:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5382: Test failed: 13:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 13:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 13:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 13:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 13:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 13:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 13:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:0: Got 0
richole.c:5338: Test failed: 14:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:1: Got 0
richole.c:5338: Test failed: 14:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:2: Got 0
richole.c:5338: Test failed: 14:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:3: Got 0
richole.c:5338: Test failed: 14:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 14:0:0+>?:4: Got 0
richole.c:5338: Test failed: 14:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 14:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 14:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 14:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 14:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 14:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 14:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:0: Got 0
richole.c:5348: Test failed: 15:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:1: Got 0
richole.c:5348: Test failed: 15:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:2: Got 0
richole.c:5348: Test failed: 15:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:3: Got 0
richole.c:5348: Test failed: 15:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 15:0:0+>?:4: Got 0
richole.c:5348: Test failed: 15:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 15:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 15:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 15:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 15:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 15:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5338: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:0: Got 0
richole.c:5353: Test failed: 16:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5338: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:0+: Got 0
richole.c:5353: Test failed: 16:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5338: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:1: Got 0
richole.c:5353: Test failed: 16:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5338: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0>0:1+: Got 0
richole.c:5353: Test failed: 16:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5338: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:2: Got 0
richole.c:5353: Test failed: 16:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5338: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:3: Got 0
richole.c:5353: Test failed: 16:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5338: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:0+>?:4: Got 0
richole.c:5353: Test failed: 16:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5338: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:0: Got 0
richole.c:5353: Test failed: 16:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5338: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:0+: Got 0
richole.c:5353: Test failed: 16:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5338: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:1: Got 0
richole.c:5353: Test failed: 16:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5338: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1>0:1+: Got 0
richole.c:5353: Test failed: 16:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5338: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:2: Got 0
richole.c:5353: Test failed: 16:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5338: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:3: Got 0
richole.c:5353: Test failed: 16:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5338: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 16:0:1+>?:4: Got 0
richole.c:5353: Test failed: 16:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 16:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 16:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 16:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 16:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 16:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 16:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 16:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:2: Got 0
richole.c:5330: Test failed: 17:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:3: Got 0
richole.c:5330: Test failed: 17:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:0+>?:4: Got 0
richole.c:5330: Test failed: 17:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:2: Got 0
richole.c:5330: Test failed: 17:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:3: Got 0
richole.c:5330: Test failed: 17:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 17:0:1+>?:4: Got 0
richole.c:5330: Test failed: 17:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 17:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 17:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 17:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 17:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 17:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:0: Got 0
richole.c:5348: Test failed: 18:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:1: Got 0
richole.c:5348: Test failed: 18:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:2: Got 0
richole.c:5348: Test failed: 18:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:3: Got 0
richole.c:5348: Test failed: 18:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 18:0:0+>?:4: Got 0
richole.c:5348: Test failed: 18:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 18:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 18:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 18:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 18:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 18:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:0: Got 0
richole.c:5348: Test failed: 19:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:1: Got 0
richole.c:5348: Test failed: 19:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:2: Got 0
richole.c:5348: Test failed: 19:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:3: Got 0
richole.c:5348: Test failed: 19:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 19:0:0+>?:4: Got 0
richole.c:5348: Test failed: 19:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 19:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 19:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 19:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 19:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 19:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1a:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1a:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1a:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1a:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1a:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1a:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1a:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1a:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1a:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1a:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:0>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:0+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:0+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:0+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:0+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:0: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:0: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:0: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:0: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:0+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:0+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:0+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:0+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:1: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:1: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:1: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:1: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1b:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1>0:1+: unexpected undo success
richole.c:5355: Test failed: 1b:0:1>0:1+: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1>0:1+: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1>0:1+: Expected "foo", got ""
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:2: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:2: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:2: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:2: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:3: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:3: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:3: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:3: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1b:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1b:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1b:0:1+>?:4: unexpected undo success
richole.c:5355: Test failed: 1b:0:1+>?:4: EM_CANUNDO: Expected 1, got 0
richole.c:5356: Test failed: 1b:0:1+>?:4: EM_CANREDO: Expected 0, got 1
richole.c:5358: Test failed: 1b:0:1+>?:4: Expected "foo", got ""
richole.c:5330: Test failed: 1b:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1b:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1b:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1b:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1b:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1b:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:0: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:1: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:2: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:3: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1c:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1c:0:0+>?:4: state 0: expected 1, got 0
richole.c:5348: Test failed: 1c:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1c:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1c:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1c:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1c:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1c:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:0: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:0: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:1: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:1: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:2: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:2: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:3: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:3: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1d:0:0+>?:4: Got 0
richole.c:5348: Test failed: 1d:0:0+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:1+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1d:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1d:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1d:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1d:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1d:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:0>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:0+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:0+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:0+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:0: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:0: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:0: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:0+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:0+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:0+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:1: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:1: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:1: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5338: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1>0:1+: Got 0
richole.c:5353: Test failed: 1e:0:1>0:1+: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1>0:1+: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:2: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:2: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:2: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:3: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:3: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:3: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5338: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5197: Test succeeded inside todo block: 1e:0:1+>?:4: Got 0
richole.c:5353: Test failed: 1e:0:1+>?:4: expected undo count to be 0, got 1
richole.c:5354: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5378: Test failed: 1e:0:1+>?:4: state 0: expected 1, got 0
richole.c:5330: Test failed: 1e:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1e:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1e:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1e:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1e:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1e:2:4 >?:4: expected state 2, got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:0>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:0>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:0+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:0>0:4+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:0: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:0+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:1: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1>0:1+: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:2: Got 0
richole.c:5330: Test failed: 1f:0:1>0:2+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:3: Got 0
richole.c:5330: Test failed: 1f:0:1>0:3+: got 0x80004001
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5197: Test succeeded inside todo block: 1f:0:1+>?:4: Got 0
richole.c:5330: Test failed: 1f:0:1>0:4+: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:2+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:3+>?:4: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:0: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:1: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:2: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:3: got 0x80004001
richole.c:5330: Test failed: 1f:0:4+>?:4: got 0x80004001
richole.c:5223: Test failed: 1f:1:0 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:0 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:1 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:2 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:3 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:0: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:1: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:2: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:3: expected state 1, got 0
richole.c:5223: Test failed: 1f:1:4 >?:4: expected state 1, got 0
richole.c:5223: Test failed: 1f:2:0 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:0 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:1 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:2 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:3 >?:4: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:0: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:1: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:2: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:3: expected state 2, got 0
richole.c:5223: Test failed: 1f:2:4 >?:4: expected state 2, got 0
Report validation errors:
riched20:richole prints too much data (259179 bytes)
1
0
[PATCH vkd3d 07/12] vkd3d-shader/hlsl: Replace register offsets with index paths in parse code.
by Francisco Casas 09 Jul '22
by Francisco Casas 09 Jul '22
09 Jul '22
The transform_deref_paths_into_offsets pass turns these index paths back
into register offsets, they should not be used anywhere before that.
Signed-off-by: Francisco Casas <fcasas(a)codeweavers.com>
---
The idea is that we can move this pass forward as we translate more
passes to work with index paths. This, until register offsets can be
totally removed, after we implement the SMxIRs and their translations.
The aim is to have 3 ways of initializing load/store nodes when using index
paths:
* One that initializes the node from a another's node deref and and
optional index to be appended to that deref's path.
* One that initializes the node from a deref and the index
of a single basic component within it. This one also generates constant
nodes for the required path, so it also initializes an instruction block
whose instructions must be inserted in the instruction list.
* One that initializes the node directly for a whole variable. These functions
are already present: hlsl_new_var_load() and hlsl_new_simple_store().
The signatures of these functions were placed nearby in hlsl.h
hlsl_new_resource_load() was modified to receive deref arguments instead
of var+offset pairs.
It is worth noting that the use of index paths allows to remove the data type
argument when initializing store/loads because it can now be deducted from the
variable and the hlsl_deref.
Applying an index over a matrix derefence retrieves a vector. If the matrix
is row_major, this corresponds to a row, otherwise, it corresponds to a
column. So, the code should take matrix majority into account, at least until
the split_matrix_copies pass.
The first index in a path after a loading a struct should be an
hlsl_ir_constant, since the field that's being addressed is always
known at parse-time.
hlsl_get_direct_var_deref() can be used to create a deref value that can
be passed by reference in the first 2 cases. This value shall not be
modified after being created.
Signed-off-by: Francisco Casas <fcasas(a)codeweavers.com>
---
libs/vkd3d-shader/hlsl.c | 371 +++++++++++++++++++++++++++----
libs/vkd3d-shader/hlsl.h | 35 ++-
libs/vkd3d-shader/hlsl.y | 147 +++++-------
libs/vkd3d-shader/hlsl_codegen.c | 71 ++++++
4 files changed, 469 insertions(+), 155 deletions(-)
diff --git a/libs/vkd3d-shader/hlsl.c b/libs/vkd3d-shader/hlsl.c
index 17ccd305..c7416054 100644
--- a/libs/vkd3d-shader/hlsl.c
+++ b/libs/vkd3d-shader/hlsl.c
@@ -249,39 +249,51 @@ static struct hlsl_type *hlsl_new_type(struct hlsl_ctx *ctx, const char *name, e
return type;
}
-/* Returns the register offset of a given component within a type, given its index.
- * *comp_type will be set to the type of the component. */
-unsigned int hlsl_compute_component_offset(struct hlsl_ctx *ctx, struct hlsl_type *type,
- unsigned int idx, struct hlsl_type **comp_type)
+/* Returns the path of a given component within a type, given its index.
+ * *comp_type will be set to the type of the component.
+ * *path_len will be set to the lenght of the path.
+ * Memory should be free afterwards.
+ */
+unsigned int *hlsl_compute_component_path(struct hlsl_ctx *ctx, struct hlsl_type *type,
+ unsigned int idx, struct hlsl_type **comp_type, unsigned int *path_len)
{
+ unsigned int *path;
+
switch (type->type)
{
case HLSL_CLASS_SCALAR:
+ case HLSL_CLASS_OBJECT:
+ {
+ assert(idx == 0);
+ *comp_type = type;
+ *path_len = 0;
+ path = hlsl_alloc(ctx, 0 * sizeof(unsigned int));
+ return path;
+ }
case HLSL_CLASS_VECTOR:
{
assert(idx < type->dimx * type->dimy);
*comp_type = hlsl_get_scalar_type(ctx, type->base_type);
- return idx;
+ *path_len = 1;
+ if (!(path = hlsl_alloc(ctx, 1 * sizeof(unsigned int))))
+ return NULL;
+ path[0] = idx;
+ return path;
}
case HLSL_CLASS_MATRIX:
{
- unsigned int minor, major, x = idx % type->dimx, y = idx / type->dimx;
+ unsigned int y = idx / type->dimx, x = idx % type->dimx;
+ bool row_major = hlsl_type_is_row_major(type);
assert(idx < type->dimx * type->dimy);
- if (hlsl_type_is_row_major(type))
- {
- minor = x;
- major = y;
- }
- else
- {
- minor = y;
- major = x;
- }
-
*comp_type = hlsl_get_scalar_type(ctx, type->base_type);
- return 4 * major + minor;
+ *path_len = 2;
+ if (!(path = hlsl_alloc(ctx, 2 * sizeof(unsigned int))))
+ return NULL;
+ path[0] = row_major? y : x;
+ path[1] = row_major? x : y;
+ return path;
}
case HLSL_CLASS_ARRAY:
@@ -289,45 +301,64 @@ unsigned int hlsl_compute_component_offset(struct hlsl_ctx *ctx, struct hlsl_typ
unsigned int elem_comp_count = hlsl_type_component_count(type->e.array.type);
unsigned int array_idx = idx / elem_comp_count;
unsigned int idx_in_elem = idx % elem_comp_count;
+ unsigned int elem_path_len;
+ unsigned int *elem_path;
- assert(array_idx < type->e.array.elements_count);
+ elem_path = hlsl_compute_component_path(ctx, type->e.array.type, idx_in_elem, comp_type, &elem_path_len);
+ if (elem_path_len && !elem_path)
+ return NULL;
- return array_idx * hlsl_type_get_array_element_reg_size(type->e.array.type) +
- hlsl_compute_component_offset(ctx, type->e.array.type, idx_in_elem, comp_type);
+ *path_len = elem_path_len + 1;
+ if (!(path = hlsl_alloc(ctx, (*path_len) * sizeof(unsigned int))))
+ {
+ vkd3d_free(elem_path);
+ return NULL;
+ }
+ memcpy(path + 1, elem_path, elem_path_len * sizeof(unsigned int));
+ vkd3d_free(elem_path);
+ path[0] = array_idx;
+ return path;
}
case HLSL_CLASS_STRUCT:
{
struct hlsl_struct_field *field;
- unsigned int elem_comp_count, i;
+ unsigned int field_comp_count, i;
for (i = 0; i < type->e.record.field_count; ++i)
{
field = &type->e.record.fields[i];
- elem_comp_count = hlsl_type_component_count(field->type);
+ field_comp_count = hlsl_type_component_count(field->type);
- if (idx < elem_comp_count)
+ if (idx < field_comp_count)
{
- return field->reg_offset +
- hlsl_compute_component_offset(ctx, field->type, idx, comp_type);
+ unsigned int field_path_len;
+ unsigned int *field_path;
+
+ field_path = hlsl_compute_component_path(ctx, field->type, idx, comp_type, &field_path_len);
+ if (field_path_len && !field_path)
+ return NULL;
+
+ *path_len = field_path_len + 1;
+ if (!(path = hlsl_alloc(ctx, (*path_len) * sizeof(unsigned int))))
+ {
+ vkd3d_free(field_path);
+ return NULL;
+ }
+ memcpy(path + 1, field_path, field_path_len * sizeof(unsigned int));
+ vkd3d_free(field_path);
+ path[0] = i;
+ return path;
}
- idx -= elem_comp_count;
+ idx -= field_comp_count;
}
-
assert(0);
- return 0;
- }
-
- case HLSL_CLASS_OBJECT:
- {
- assert(idx == 0);
- *comp_type = type;
- return 0;
+ return NULL;
}
}
assert(0);
- return 0;
+ return NULL;
}
struct hlsl_type *hlsl_get_type_from_path_index(struct hlsl_ctx *ctx, const struct hlsl_type *type,
@@ -733,6 +764,62 @@ static bool type_is_single_reg(const struct hlsl_type *type)
return type->type == HLSL_CLASS_SCALAR || type->type == HLSL_CLASS_VECTOR;
}
+static bool init_deref(struct hlsl_ctx *ctx, struct hlsl_deref *deref, struct hlsl_ir_var *var,
+ unsigned int path_len)
+{
+ deref->var = var;
+ deref->path_len = path_len;
+ deref->offset.node = NULL;
+
+ if (path_len == 0)
+ {
+ deref->path = NULL;
+ return true;
+ }
+
+ if (!(deref->path = hlsl_alloc(ctx, sizeof(*deref->path) * deref->path_len)))
+ {
+ deref->var = NULL;
+ deref->path_len = 0;
+ return false;
+ }
+
+ return true;
+}
+
+static bool deref_copy(struct hlsl_ctx *ctx, struct hlsl_deref *deref, struct hlsl_deref *other)
+{
+ unsigned int i;
+
+ if (!other)
+ {
+ deref->var = NULL;
+ deref->path = NULL;
+ deref->path_len = 0;
+ return true;
+ }
+
+ if (!init_deref(ctx, deref, other->var, other->path_len))
+ return false;
+
+ for (i = 0; i < deref->path_len; ++i)
+ hlsl_src_from_node(&deref->path[i], other->path[i].node);
+
+ hlsl_src_from_node(&deref->offset, other->offset.node);
+
+ return true;
+}
+
+static struct hlsl_type *get_type_from_deref(struct hlsl_ctx *ctx, const struct hlsl_deref *deref)
+{
+ struct hlsl_type *type = deref->var->data_type;
+ unsigned int i;
+
+ for (i = 0; i < deref->path_len; ++i)
+ type = hlsl_get_type_from_path_index(ctx, type, deref->path[i].node);
+ return type;
+}
+
struct hlsl_ir_store *hlsl_new_store(struct hlsl_ctx *ctx, struct hlsl_ir_var *var, struct hlsl_ir_node *offset,
struct hlsl_ir_node *rhs, unsigned int writemask, struct vkd3d_shader_location loc)
{
@@ -745,16 +832,113 @@ struct hlsl_ir_store *hlsl_new_store(struct hlsl_ctx *ctx, struct hlsl_ir_var *v
return NULL;
init_node(&store->node, HLSL_IR_STORE, NULL, loc);
- store->lhs.var = var;
+ init_deref(ctx, &store->lhs, var, 0);
hlsl_src_from_node(&store->lhs.offset, offset);
hlsl_src_from_node(&store->rhs, rhs);
store->writemask = writemask;
return store;
}
+/* Returns a simple variable derefence, so that the value can be stored and then passed by reference
+ * to load/store functions. It shall not be modified afterwards. */
+struct hlsl_deref hlsl_get_direct_var_deref(struct hlsl_ir_var *var)
+{
+ struct hlsl_deref deref = {};
+
+ deref.var = var;
+ return deref;
+}
+
struct hlsl_ir_store *hlsl_new_simple_store(struct hlsl_ctx *ctx, struct hlsl_ir_var *lhs, struct hlsl_ir_node *rhs)
{
- return hlsl_new_store(ctx, lhs, NULL, rhs, 0, rhs->loc);
+ struct hlsl_deref lhs_deref = hlsl_get_direct_var_deref(lhs);
+
+ return hlsl_new_store_index(ctx, &lhs_deref, NULL, rhs, 0, rhs->loc);
+}
+
+struct hlsl_ir_store *hlsl_new_store_index(struct hlsl_ctx *ctx, const struct hlsl_deref *lhs,
+ struct hlsl_ir_node *idx, struct hlsl_ir_node *rhs, unsigned int writemask, struct vkd3d_shader_location loc)
+{
+ struct hlsl_ir_store *store;
+ unsigned int i;
+
+ assert(lhs);
+
+ if (!(store = hlsl_alloc(ctx, sizeof(*store))))
+ return NULL;
+ init_node(&store->node, HLSL_IR_STORE, NULL, loc);
+
+ if (!init_deref(ctx, &store->lhs, lhs->var, lhs->path_len + !!idx))
+ return NULL;
+ for (i = 0; i < lhs->path_len; ++i)
+ hlsl_src_from_node(&store->lhs.path[i], lhs->path[i].node);
+ if (idx)
+ hlsl_src_from_node(&store->lhs.path[i], idx);
+
+ hlsl_src_from_node(&store->rhs, rhs);
+
+ if (!writemask && type_is_single_reg(rhs->data_type))
+ writemask = (1 << rhs->data_type->dimx) - 1;
+ store->writemask = writemask;
+
+ return store;
+}
+
+struct hlsl_ir_store *hlsl_new_store_component(struct hlsl_ctx *ctx, struct hlsl_block *block,
+ const struct hlsl_deref *lhs, unsigned int comp, struct hlsl_ir_node *rhs)
+{
+ struct hlsl_type *type, *comp_type;
+ unsigned int *path, path_len, i;
+ struct hlsl_ir_store *store;
+ struct hlsl_ir_constant *c;
+
+ list_init(&block->instrs);
+
+ if (!(store = hlsl_alloc(ctx, sizeof(*store))))
+ return NULL;
+ init_node(&store->node, HLSL_IR_STORE, NULL, rhs->loc);
+
+ type = get_type_from_deref(ctx, lhs);
+ path = hlsl_compute_component_path(ctx, type, comp, &comp_type, &path_len);
+ if (path_len && !path)
+ {
+ vkd3d_free(store);
+ return NULL;
+ }
+
+ if (!init_deref(ctx, &store->lhs, lhs->var, lhs->path_len + path_len))
+ {
+ vkd3d_free(path);
+ vkd3d_free(store);
+ return NULL;
+ }
+
+ for (i = 0; i < lhs->path_len; ++i)
+ hlsl_src_from_node(&store->lhs.path[i], lhs->path[i].node);
+ for (i = 0; i < path_len; ++i)
+ {
+ if (!(c = hlsl_new_uint_constant(ctx, path[i], &rhs->loc)))
+ {
+ vkd3d_free(path);
+ hlsl_free_instr_list(&block->instrs);
+ hlsl_free_deref(&store->lhs);
+ vkd3d_free(store);
+ return NULL;
+ }
+ list_add_tail(&block->instrs, &c->node.entry);
+
+ hlsl_src_from_node(&store->lhs.path[lhs->path_len + i], &c->node);
+ }
+ vkd3d_free(path);
+
+ hlsl_src_from_node(&store->rhs, rhs);
+
+ if (type_is_single_reg(rhs->data_type))
+ store->writemask = (1 << rhs->data_type->dimx) - 1;
+
+ list_add_tail(&block->instrs, &store->node.entry);
+
+ return store;
}
struct hlsl_ir_constant *hlsl_new_constant(struct hlsl_ctx *ctx, struct hlsl_type *type,
@@ -848,21 +1032,103 @@ struct hlsl_ir_load *hlsl_new_load(struct hlsl_ctx *ctx, struct hlsl_ir_var *var
if (!(load = hlsl_alloc(ctx, sizeof(*load))))
return NULL;
init_node(&load->node, HLSL_IR_LOAD, type, loc);
- load->src.var = var;
+ init_deref(ctx, &load->src, var, 0);
hlsl_src_from_node(&load->src.offset, offset);
return load;
}
+struct hlsl_ir_load *hlsl_new_load_index(struct hlsl_ctx *ctx, const struct hlsl_deref *deref,
+ struct hlsl_ir_node *idx, struct vkd3d_shader_location loc)
+{
+ struct hlsl_ir_load *load;
+ struct hlsl_type *type;
+ unsigned int i;
+
+ type = get_type_from_deref(ctx, deref);
+ if (idx)
+ type = hlsl_get_type_from_path_index(ctx, type, idx);
+
+ if (!(load = hlsl_alloc(ctx, sizeof(*load))))
+ return NULL;
+ init_node(&load->node, HLSL_IR_LOAD, type, loc);
+
+ if (!init_deref(ctx, &load->src, deref->var, deref->path_len + !!idx))
+ {
+ vkd3d_free(load);
+ return NULL;
+ }
+ for (i = 0; i < deref->path_len; ++i)
+ hlsl_src_from_node(&load->src.path[i], deref->path[i].node);
+ if (idx)
+ hlsl_src_from_node(&load->src.path[i], idx);
+
+ return load;
+}
+
struct hlsl_ir_load *hlsl_new_var_load(struct hlsl_ctx *ctx, struct hlsl_ir_var *var,
- const struct vkd3d_shader_location loc)
+ struct vkd3d_shader_location loc)
{
- return hlsl_new_load(ctx, var, NULL, var->data_type, loc);
+ struct hlsl_deref var_deref = hlsl_get_direct_var_deref(var);
+
+ return hlsl_new_load_index(ctx, &var_deref, NULL, loc);
+}
+
+struct hlsl_ir_load *hlsl_new_load_component(struct hlsl_ctx *ctx, struct hlsl_block *block,
+ const struct hlsl_deref *deref, unsigned int comp, struct vkd3d_shader_location loc)
+{
+ struct hlsl_type *type, *comp_type;
+ unsigned int *path, path_len, i;
+ struct hlsl_ir_constant *c;
+ struct hlsl_ir_load *load;
+
+ list_init(&block->instrs);
+
+ type = get_type_from_deref(ctx, deref);
+ path = hlsl_compute_component_path(ctx, type, comp, &comp_type, &path_len);
+ if (path_len && !path)
+ return NULL;
+
+ if (!(load = hlsl_alloc(ctx, sizeof(*load))))
+ {
+ vkd3d_free(path);
+ return NULL;
+ }
+ init_node(&load->node, HLSL_IR_LOAD, comp_type, loc);
+
+
+ if (!init_deref(ctx, &load->src, deref->var, deref->path_len + path_len))
+ {
+ vkd3d_free(path);
+ vkd3d_free(load);
+ return NULL;
+ }
+
+ for (i = 0; i < deref->path_len; ++i)
+ hlsl_src_from_node(&load->src.path[i], deref->path[i].node);
+ for (i = 0; i < path_len; ++i)
+ {
+ if (!(c = hlsl_new_uint_constant(ctx, path[i], &loc)))
+ {
+ vkd3d_free(path);
+ hlsl_free_instr_list(&block->instrs);
+ hlsl_free_deref(&load->src);
+ vkd3d_free(load);
+ return NULL;
+ }
+ list_add_tail(&block->instrs, &c->node.entry);
+
+ hlsl_src_from_node(&load->src.path[deref->path_len + i], &c->node);
+ }
+ vkd3d_free(path);
+
+ list_add_tail(&block->instrs, &load->node.entry);
+
+ return load;
}
struct hlsl_ir_resource_load *hlsl_new_resource_load(struct hlsl_ctx *ctx, struct hlsl_type *data_type,
- enum hlsl_resource_load_type type, struct hlsl_ir_var *resource, struct hlsl_ir_node *resource_offset,
- struct hlsl_ir_var *sampler, struct hlsl_ir_node *sampler_offset, struct hlsl_ir_node *coords,
- struct hlsl_ir_node *texel_offset, const struct vkd3d_shader_location *loc)
+ enum hlsl_resource_load_type type, struct hlsl_deref *resource, struct hlsl_deref *sampler,
+ struct hlsl_ir_node *coords, struct hlsl_ir_node *texel_offset, const struct vkd3d_shader_location *loc)
{
struct hlsl_ir_resource_load *load;
@@ -870,10 +1136,8 @@ struct hlsl_ir_resource_load *hlsl_new_resource_load(struct hlsl_ctx *ctx, struc
return NULL;
init_node(&load->node, HLSL_IR_RESOURCE_LOAD, data_type, *loc);
load->load_type = type;
- load->resource.var = resource;
- hlsl_src_from_node(&load->resource.offset, resource_offset);
- load->sampler.var = sampler;
- hlsl_src_from_node(&load->sampler.offset, sampler_offset);
+ deref_copy(ctx, &load->resource, resource);
+ deref_copy(ctx, &load->sampler, sampler);
hlsl_src_from_node(&load->coords, coords);
hlsl_src_from_node(&load->texel_offset, texel_offset);
return load;
@@ -1664,6 +1928,15 @@ void hlsl_free_instr_list(struct list *list)
void hlsl_free_deref(struct hlsl_deref *deref)
{
+ unsigned int i;
+
+ for (i = 0; i < deref->path_len; ++i)
+ hlsl_src_remove(&deref->path[i]);
+ vkd3d_free(deref->path);
+
+ deref->path = NULL;
+ deref->path_len = 0;
+
hlsl_src_remove(&deref->offset);
}
diff --git a/libs/vkd3d-shader/hlsl.h b/libs/vkd3d-shader/hlsl.h
index fbadd9c6..d3885540 100644
--- a/libs/vkd3d-shader/hlsl.h
+++ b/libs/vkd3d-shader/hlsl.h
@@ -374,6 +374,10 @@ struct hlsl_ir_swizzle
struct hlsl_deref
{
struct hlsl_ir_var *var;
+
+ unsigned int path_len;
+ struct hlsl_src *path;
+
struct hlsl_src offset;
};
@@ -753,14 +757,29 @@ struct hlsl_ir_if *hlsl_new_if(struct hlsl_ctx *ctx, struct hlsl_ir_node *condit
struct hlsl_ir_constant *hlsl_new_int_constant(struct hlsl_ctx *ctx, int n,
const struct vkd3d_shader_location *loc);
struct hlsl_ir_jump *hlsl_new_jump(struct hlsl_ctx *ctx, enum hlsl_ir_jump_type type, struct vkd3d_shader_location loc);
+
+struct hlsl_deref hlsl_get_direct_var_deref(struct hlsl_ir_var *var);
+
+struct hlsl_ir_load *hlsl_new_var_load(struct hlsl_ctx *ctx, struct hlsl_ir_var *var,
+ struct vkd3d_shader_location loc);
+struct hlsl_ir_load *hlsl_new_load_index(struct hlsl_ctx *ctx, const struct hlsl_deref *deref,
+ struct hlsl_ir_node *idx, struct vkd3d_shader_location loc);
+struct hlsl_ir_load *hlsl_new_load_component(struct hlsl_ctx *ctx, struct hlsl_block *block,
+ const struct hlsl_deref *deref, unsigned int comp, struct vkd3d_shader_location loc);
+
+struct hlsl_ir_store *hlsl_new_simple_store(struct hlsl_ctx *ctx, struct hlsl_ir_var *lhs, struct hlsl_ir_node *rhs);
+struct hlsl_ir_store *hlsl_new_store_index(struct hlsl_ctx *ctx, const struct hlsl_deref *lhs,
+ struct hlsl_ir_node *idx, struct hlsl_ir_node *rhs, unsigned int writemask, struct vkd3d_shader_location loc);
+struct hlsl_ir_store *hlsl_new_store_component(struct hlsl_ctx *ctx, struct hlsl_block *block,
+ const struct hlsl_deref *lhs, unsigned int comp, struct hlsl_ir_node *rhs);
+
+struct hlsl_ir_resource_load *hlsl_new_resource_load(struct hlsl_ctx *ctx, struct hlsl_type *data_type,
+ enum hlsl_resource_load_type type, struct hlsl_deref *resource, struct hlsl_deref *sampler,
+ struct hlsl_ir_node *coords, struct hlsl_ir_node *texel_offset, const struct vkd3d_shader_location *loc);
+
struct hlsl_ir_load *hlsl_new_load(struct hlsl_ctx *ctx, struct hlsl_ir_var *var, struct hlsl_ir_node *offset,
struct hlsl_type *type, struct vkd3d_shader_location loc);
struct hlsl_ir_loop *hlsl_new_loop(struct hlsl_ctx *ctx, struct vkd3d_shader_location loc);
-struct hlsl_ir_resource_load *hlsl_new_resource_load(struct hlsl_ctx *ctx, struct hlsl_type *data_type,
- enum hlsl_resource_load_type type, struct hlsl_ir_var *resource, struct hlsl_ir_node *resource_offset,
- struct hlsl_ir_var *sampler, struct hlsl_ir_node *sampler_offset, struct hlsl_ir_node *coords,
- struct hlsl_ir_node *texel_offset, const struct vkd3d_shader_location *loc);
-struct hlsl_ir_store *hlsl_new_simple_store(struct hlsl_ctx *ctx, struct hlsl_ir_var *lhs, struct hlsl_ir_node *rhs);
struct hlsl_ir_store *hlsl_new_store(struct hlsl_ctx *ctx, struct hlsl_ir_var *var, struct hlsl_ir_node *offset,
struct hlsl_ir_node *rhs, unsigned int writemask, struct vkd3d_shader_location loc);
struct hlsl_type *hlsl_new_struct_type(struct hlsl_ctx *ctx, const char *name,
@@ -777,8 +796,6 @@ struct hlsl_ir_node *hlsl_new_unary_expr(struct hlsl_ctx *ctx, enum hlsl_ir_expr
struct hlsl_ir_var *hlsl_new_var(struct hlsl_ctx *ctx, const char *name, struct hlsl_type *type,
const struct vkd3d_shader_location loc, const struct hlsl_semantic *semantic, unsigned int modifiers,
const struct hlsl_reg_reservation *reg_reservation);
-struct hlsl_ir_load *hlsl_new_var_load(struct hlsl_ctx *ctx, struct hlsl_ir_var *var,
- const struct vkd3d_shader_location loc);
void hlsl_error(struct hlsl_ctx *ctx, const struct vkd3d_shader_location *loc,
enum vkd3d_shader_error error, const char *fmt, ...) VKD3D_PRINTF_FUNC(4, 5);
@@ -798,8 +815,8 @@ struct hlsl_type *hlsl_type_clone(struct hlsl_ctx *ctx, struct hlsl_type *old,
unsigned int default_majority, unsigned int modifiers);
unsigned int hlsl_type_component_count(struct hlsl_type *type);
unsigned int hlsl_type_get_array_element_reg_size(const struct hlsl_type *type);
-unsigned int hlsl_compute_component_offset(struct hlsl_ctx *ctx, struct hlsl_type *type,
- unsigned int idx, struct hlsl_type **comp_type);
+unsigned int *hlsl_compute_component_path(struct hlsl_ctx *ctx, struct hlsl_type *type,
+ unsigned int idx, struct hlsl_type **comp_type, unsigned int *path_len);
bool hlsl_type_is_row_major(const struct hlsl_type *type);
unsigned int hlsl_type_minor_size(const struct hlsl_type *type);
unsigned int hlsl_type_major_size(const struct hlsl_type *type);
diff --git a/libs/vkd3d-shader/hlsl.y b/libs/vkd3d-shader/hlsl.y
index 63904580..ed45d54f 100644
--- a/libs/vkd3d-shader/hlsl.y
+++ b/libs/vkd3d-shader/hlsl.y
@@ -289,6 +289,7 @@ static struct hlsl_ir_node *add_cast(struct hlsl_ctx *ctx, struct list *instrs,
{
struct vkd3d_string_buffer *name;
static unsigned int counter = 0;
+ struct hlsl_deref var_deref;
struct hlsl_ir_load *load;
struct hlsl_ir_var *var;
unsigned int dst_idx;
@@ -308,13 +309,14 @@ static struct hlsl_ir_node *add_cast(struct hlsl_ctx *ctx, struct list *instrs,
vkd3d_string_buffer_release(&ctx->string_buffers, name);
if (!var)
return NULL;
+ var_deref = hlsl_get_direct_var_deref(var);
for (dst_idx = 0; dst_idx < dst_type->dimx * dst_type->dimy; ++dst_idx)
{
+ unsigned int src_idx, *dst_path, dst_path_len;
struct hlsl_type *dst_scalar_type;
- unsigned int src_idx, dst_offset;
struct hlsl_ir_store *store;
- struct hlsl_ir_constant *c;
+ struct hlsl_block block;
if (broadcast)
{
@@ -334,7 +336,10 @@ static struct hlsl_ir_node *add_cast(struct hlsl_ctx *ctx, struct list *instrs,
}
}
- dst_offset = hlsl_compute_component_offset(ctx, dst_type, dst_idx, &dst_scalar_type);
+ dst_path = hlsl_compute_component_path(ctx, dst_type, dst_idx, &dst_scalar_type, &dst_path_len);
+ if (dst_path_len && !dst_path)
+ return NULL;
+ vkd3d_free(dst_path);
if (!(load = add_load_component(ctx, instrs, node, src_idx, *loc)))
return NULL;
@@ -343,16 +348,12 @@ static struct hlsl_ir_node *add_cast(struct hlsl_ctx *ctx, struct list *instrs,
return NULL;
list_add_tail(instrs, &cast->node.entry);
- if (!(c = hlsl_new_uint_constant(ctx, dst_offset, loc)))
+ if (!(store = hlsl_new_store_component(ctx, &block, &var_deref, dst_idx, &cast->node)))
return NULL;
- list_add_tail(instrs, &c->node.entry);
-
- if (!(store = hlsl_new_store(ctx, var, &c->node, &cast->node, 0, *loc)))
- return NULL;
- list_add_tail(instrs, &store->node.entry);
+ list_move_tail(instrs, &block.instrs);
}
- if (!(load = hlsl_new_load(ctx, var, NULL, dst_type, *loc)))
+ if (!(load = hlsl_new_var_load(ctx, var, *loc)))
return NULL;
list_add_tail(instrs, &load->node.entry);
@@ -625,22 +626,13 @@ static struct hlsl_ir_jump *add_return(struct hlsl_ctx *ctx, struct list *instrs
static struct hlsl_ir_load *add_load_index(struct hlsl_ctx *ctx, struct list *instrs, struct hlsl_ir_node *var_node,
struct hlsl_ir_node *idx, const struct vkd3d_shader_location loc)
{
- struct hlsl_type *elem_type;
- struct hlsl_ir_node *offset;
struct hlsl_ir_load *load;
- struct hlsl_block block;
-
- elem_type = hlsl_get_type_from_path_index(ctx, var_node->data_type, idx);
if (var_node->type == HLSL_IR_LOAD)
{
const struct hlsl_deref *src = &hlsl_ir_load(var_node)->src;
- if (!(offset = hlsl_new_offset_from_path_index(ctx, &block, var_node->data_type, src->offset.node, idx, &loc)))
- return NULL;
- list_move_tail(instrs, &block.instrs);
-
- if (!(load = hlsl_new_load(ctx, src->var, offset, elem_type, loc)))
+ if (!(load = hlsl_new_load_index(ctx, src, idx, loc)))
return NULL;
list_add_tail(instrs, &load->node.entry);
}
@@ -650,10 +642,6 @@ static struct hlsl_ir_load *add_load_index(struct hlsl_ctx *ctx, struct list *in
struct hlsl_ir_var *var;
char name[27];
- if (!(offset = hlsl_new_offset_from_path_index(ctx, &block, var_node->data_type, NULL, idx, &loc)))
- return NULL;
- list_move_tail(instrs, &block.instrs);
-
sprintf(name, "<deref-%p>", var_node);
if (!(var = hlsl_new_synthetic_var(ctx, name, var_node->data_type, var_node->loc)))
return NULL;
@@ -662,7 +650,7 @@ static struct hlsl_ir_load *add_load_index(struct hlsl_ctx *ctx, struct list *in
return NULL;
list_add_tail(instrs, &store->node.entry);
- if (!(load = hlsl_new_load(ctx, var, offset, elem_type, loc)))
+ if (!(load = hlsl_new_load_index(ctx, &store->lhs, idx, loc)))
return NULL;
list_add_tail(instrs, &load->node.entry);
}
@@ -673,38 +661,16 @@ static struct hlsl_ir_load *add_load_index(struct hlsl_ctx *ctx, struct list *in
static struct hlsl_ir_load *add_load_component(struct hlsl_ctx *ctx, struct list *instrs, struct hlsl_ir_node *var_node,
unsigned int comp, const struct vkd3d_shader_location loc)
{
- struct hlsl_type *comp_type;
- struct hlsl_ir_node *offset;
- struct hlsl_ir_constant *c;
struct hlsl_ir_load *load;
- unsigned int comp_offset;
- struct hlsl_ir_var *var;
-
- comp_offset = hlsl_compute_component_offset(ctx, var_node->data_type, comp, &comp_type);
-
- if (!(c = hlsl_new_uint_constant(ctx, comp_offset, &loc)))
- return NULL;
- list_add_tail(instrs, &c->node.entry);
-
- offset = &c->node;
+ struct hlsl_block block;
if (var_node->type == HLSL_IR_LOAD)
{
const struct hlsl_deref *src = &hlsl_ir_load(var_node)->src;
- struct hlsl_ir_node *add;
-
- var = src->var;
- if (src->offset.node)
- {
- if (!(add = hlsl_new_binary_expr(ctx, HLSL_OP2_ADD, src->offset.node, &c->node)))
- return NULL;
- list_add_tail(instrs, &add->entry);
- offset = add;
- }
- if (!(load = hlsl_new_load(ctx, var, offset, comp_type, loc)))
+ if (!(load = hlsl_new_load_component(ctx, &block, src, comp, loc)))
return NULL;
- list_add_tail(instrs, &load->node.entry);
+ list_move_tail(instrs, &block.instrs);
}
else
{
@@ -720,9 +686,9 @@ static struct hlsl_ir_load *add_load_component(struct hlsl_ctx *ctx, struct list
return NULL;
list_add_tail(instrs, &store->node.entry);
- if (!(load = hlsl_new_load(ctx, var, offset, comp_type, loc)))
+ if (!(load = hlsl_new_load_component(ctx, &block, &store->lhs, comp, loc)))
return NULL;
- list_add_tail(instrs, &load->node.entry);
+ list_move_tail(instrs, &block.instrs);
}
return load;
@@ -752,6 +718,7 @@ static bool add_matrix_index(struct hlsl_ctx *ctx, struct list *instrs,
struct hlsl_type *mat_type = matrix->data_type, *ret_type;
struct vkd3d_string_buffer *name;
static unsigned int counter = 0;
+ struct hlsl_deref var_deref;
struct hlsl_ir_load *load;
struct hlsl_ir_var *var;
unsigned int i;
@@ -767,12 +734,14 @@ static bool add_matrix_index(struct hlsl_ctx *ctx, struct list *instrs,
vkd3d_string_buffer_release(&ctx->string_buffers, name);
if (!var)
return false;
+ var_deref = hlsl_get_direct_var_deref(var);
for (i = 0; i < mat_type->dimx; ++i)
{
struct hlsl_ir_load *column, *value;
struct hlsl_ir_store *store;
struct hlsl_ir_constant *c;
+ struct hlsl_block block;
if (!(c = hlsl_new_uint_constant(ctx, i, loc)))
return false;
@@ -784,9 +753,9 @@ static bool add_matrix_index(struct hlsl_ctx *ctx, struct list *instrs,
if (!(value = add_load_index(ctx, instrs, &column->node, index, *loc)))
return false;
- if (!(store = hlsl_new_store(ctx, var, &c->node, &value->node, 0, *loc)))
+ if (!(store = hlsl_new_store_component(ctx, &block, &var_deref, i, &value->node)))
return false;
- list_add_tail(instrs, &store->node.entry);
+ list_move_tail(instrs, &block.instrs);
}
if (!(load = hlsl_new_var_load(ctx, var, *loc)))
@@ -1234,6 +1203,7 @@ static struct hlsl_ir_node *add_expr(struct hlsl_ctx *ctx, struct list *instrs,
struct vkd3d_string_buffer *name;
static unsigned int counter = 0;
struct hlsl_type *vector_type;
+ struct hlsl_deref var_deref;
struct hlsl_ir_load *load;
struct hlsl_ir_var *var;
@@ -1245,6 +1215,7 @@ static struct hlsl_ir_node *add_expr(struct hlsl_ctx *ctx, struct list *instrs,
vkd3d_string_buffer_release(&ctx->string_buffers, name);
if (!var)
return NULL;
+ var_deref = hlsl_get_direct_var_deref(var);
for (i = 0; i < hlsl_type_major_size(type); i++)
{
@@ -1272,16 +1243,12 @@ static struct hlsl_ir_node *add_expr(struct hlsl_ctx *ctx, struct list *instrs,
if (!(value = add_expr(ctx, instrs, op, vector_operands, vector_type, loc)))
return NULL;
- if (!(c = hlsl_new_uint_constant(ctx, 4 * i, loc)))
- return NULL;
- list_add_tail(instrs, &c->node.entry);
-
- if (!(store = hlsl_new_store(ctx, var, &c->node, value, 0, *loc)))
+ if (!(store = hlsl_new_store_index(ctx, &var_deref, &c->node, value, 0, *loc)))
return NULL;
list_add_tail(instrs, &store->node.entry);
}
- if (!(load = hlsl_new_load(ctx, var, NULL, type, *loc)))
+ if (!(load = hlsl_new_var_load(ctx, var, *loc)))
return NULL;
list_add_tail(instrs, &load->node.entry);
@@ -1664,15 +1631,11 @@ static struct hlsl_ir_node *add_assignment(struct hlsl_ctx *ctx, struct list *in
return NULL;
}
- if (!(store = hlsl_alloc(ctx, sizeof(*store))))
- return NULL;
-
while (lhs->type != HLSL_IR_LOAD)
{
if (lhs->type == HLSL_IR_EXPR && hlsl_ir_expr(lhs)->op == HLSL_OP1_CAST)
{
hlsl_fixme(ctx, &lhs->loc, "Cast on the LHS.");
- vkd3d_free(store);
return NULL;
}
else if (lhs->type == HLSL_IR_SWIZZLE)
@@ -1686,13 +1649,11 @@ static struct hlsl_ir_node *add_assignment(struct hlsl_ctx *ctx, struct list *in
if (!invert_swizzle(&s, &writemask, &width))
{
hlsl_error(ctx, &lhs->loc, VKD3D_SHADER_ERROR_HLSL_INVALID_WRITEMASK, "Invalid writemask.");
- vkd3d_free(store);
return NULL;
}
if (!(new_swizzle = hlsl_new_swizzle(ctx, s, width, rhs, &swizzle->node.loc)))
{
- vkd3d_free(store);
return NULL;
}
list_add_tail(instrs, &new_swizzle->node.entry);
@@ -1703,16 +1664,12 @@ static struct hlsl_ir_node *add_assignment(struct hlsl_ctx *ctx, struct list *in
else
{
hlsl_error(ctx, &lhs->loc, VKD3D_SHADER_ERROR_HLSL_INVALID_LVALUE, "Invalid lvalue.");
- vkd3d_free(store);
return NULL;
}
}
- init_node(&store->node, HLSL_IR_STORE, NULL, lhs->loc);
- store->writemask = writemask;
- store->lhs.var = hlsl_ir_load(lhs)->src.var;
- hlsl_src_from_node(&store->lhs.offset, hlsl_ir_load(lhs)->src.offset.node);
- hlsl_src_from_node(&store->rhs, rhs);
+ if (!(store = hlsl_new_store_index(ctx, &hlsl_ir_load(lhs)->src, NULL, rhs, writemask, rhs->loc)))
+ return NULL;
list_add_tail(instrs, &store->node.entry);
/* Don't use the instruction itself as a source, as this makes structure
@@ -1761,32 +1718,32 @@ static void initialize_var_components(struct hlsl_ctx *ctx, struct list *instrs,
struct hlsl_ir_var *dst, unsigned int *store_index, struct hlsl_ir_node *src)
{
unsigned int src_comp_count = hlsl_type_component_count(src->data_type);
+ struct hlsl_deref dst_deref = hlsl_get_direct_var_deref(dst);
unsigned int k;
for (k = 0; k < src_comp_count; ++k)
{
+ unsigned int dst_path_len, *dst_path;
struct hlsl_type *dst_comp_type;
- unsigned int dst_reg_offset;
struct hlsl_ir_store *store;
- struct hlsl_ir_constant *c;
struct hlsl_ir_load *load;
struct hlsl_ir_node *conv;
+ struct hlsl_block block;
if (!(load = add_load_component(ctx, instrs, src, k, src->loc)))
return;
- dst_reg_offset = hlsl_compute_component_offset(ctx, dst->data_type, *store_index, &dst_comp_type);
-
- if (!(conv = add_implicit_conversion(ctx, instrs, &load->node, dst_comp_type, &src->loc)))
+ dst_path = hlsl_compute_component_path(ctx, dst->data_type, *store_index, &dst_comp_type, &dst_path_len);
+ if (dst_path_len && !dst_path)
return;
+ vkd3d_free(dst_path);
- if (!(c = hlsl_new_uint_constant(ctx, dst_reg_offset, &src->loc)))
+ if (!(conv = add_implicit_conversion(ctx, instrs, &load->node, dst_comp_type, &src->loc)))
return;
- list_add_tail(instrs, &c->node.entry);
- if (!(store = hlsl_new_store(ctx, dst, &c->node, conv, 0, src->loc)))
+ if (!(store = hlsl_new_store_component(ctx, &block, &dst_deref, *store_index, conv)))
return;
- list_add_tail(instrs, &store->node.entry);
+ list_move_tail(instrs, &block.instrs);
++*store_index;
}
@@ -2151,6 +2108,7 @@ static bool intrinsic_mul(struct hlsl_ctx *ctx,
unsigned int i, j, k, vect_count = 0;
struct vkd3d_string_buffer *name;
static unsigned int counter = 0;
+ struct hlsl_deref var_deref;
struct hlsl_ir_load *load;
struct hlsl_ir_var *var;
@@ -2197,15 +2155,15 @@ static bool intrinsic_mul(struct hlsl_ctx *ctx,
vkd3d_string_buffer_release(&ctx->string_buffers, name);
if (!var)
return false;
+ var_deref = hlsl_get_direct_var_deref(var);
for (i = 0; i < matrix_type->dimx; ++i)
+ {
for (j = 0; j < matrix_type->dimy; ++j)
{
struct hlsl_ir_node *node = NULL;
- struct hlsl_type *scalar_type;
struct hlsl_ir_store *store;
- struct hlsl_ir_constant *c;
- unsigned int offset;
+ struct hlsl_block block;
for (k = 0; k < cast_type1->dimx && k < cast_type2->dimy; ++k)
{
@@ -2232,17 +2190,13 @@ static bool intrinsic_mul(struct hlsl_ctx *ctx,
}
}
- offset = hlsl_compute_component_offset(ctx, matrix_type, j * matrix_type->dimx + i, &scalar_type);
- if (!(c = hlsl_new_uint_constant(ctx, offset, loc)))
- return false;
- list_add_tail(params->instrs, &c->node.entry);
-
- if (!(store = hlsl_new_store(ctx, var, &c->node, node, 0, *loc)))
+ if (!(store = hlsl_new_store_component(ctx, &block, &var_deref, j * matrix_type->dimx + i, node)))
return false;
- list_add_tail(params->instrs, &store->node.entry);
+ list_move_tail(params->instrs, &block.instrs);
}
+ }
- if (!(load = hlsl_new_load(ctx, var, NULL, matrix_type, *loc)))
+ if (!(load = hlsl_new_var_load(ctx, var, *loc)))
return false;
list_add_tail(params->instrs, &load->node.entry);
@@ -2478,7 +2432,7 @@ static bool add_method_call(struct hlsl_ctx *ctx, struct list *instrs, struct hl
return false;
if (!(load = hlsl_new_resource_load(ctx, object_type->e.resource_format, HLSL_RESOURCE_LOAD,
- object_load->src.var, object_load->src.offset.node, NULL, NULL, coords, NULL, loc)))
+ &object_load->src, NULL, coords, NULL, loc)))
return false;
list_add_tail(instrs, &load->node.entry);
return true;
@@ -2529,10 +2483,10 @@ static bool add_method_call(struct hlsl_ctx *ctx, struct list *instrs, struct hl
}
if (!(load = hlsl_new_resource_load(ctx, object_type->e.resource_format,
- HLSL_RESOURCE_SAMPLE, object_load->src.var, object_load->src.offset.node,
- sampler_load->src.var, sampler_load->src.offset.node, coords, offset, loc)))
+ HLSL_RESOURCE_SAMPLE, &object_load->src, &sampler_load->src, coords, offset, loc)))
return false;
list_add_tail(instrs, &load->node.entry);
+
return true;
}
else if ((!strcmp(name, "Gather") || !strcmp(name, "GatherRed") || !strcmp(name, "GatherBlue")
@@ -2633,8 +2587,7 @@ static bool add_method_call(struct hlsl_ctx *ctx, struct list *instrs, struct hl
return false;
if (!(load = hlsl_new_resource_load(ctx, result_type,
- load_type, object_load->src.var, object_load->src.offset.node,
- sampler_load->src.var, sampler_load->src.offset.node, coords, offset, loc)))
+ load_type, &object_load->src, &sampler_load->src, coords, offset, loc)))
return false;
list_add_tail(instrs, &load->node.entry);
return true;
diff --git a/libs/vkd3d-shader/hlsl_codegen.c b/libs/vkd3d-shader/hlsl_codegen.c
index 373439af..513e599e 100644
--- a/libs/vkd3d-shader/hlsl_codegen.c
+++ b/libs/vkd3d-shader/hlsl_codegen.c
@@ -21,6 +21,75 @@
#include "hlsl.h"
#include <stdio.h>
+/* TODO: remove when no longer needed, only used for transform_deref_paths_into_offsets() */
+static void replace_deref_path_with_offset(struct hlsl_ctx *ctx, struct hlsl_deref *deref,
+ struct hlsl_ir_node *instr)
+{
+ struct hlsl_ir_node *offset;
+ struct hlsl_type *type;
+ unsigned int i;
+
+ if (!deref->var)
+ return;
+
+ type = deref->var->data_type;
+
+ /* register offsets shouldn't be used before this point is reached. */
+ assert(!deref->offset.node);
+
+ offset = NULL;
+
+ for (i = 0; i < deref->path_len; ++i)
+ {
+ struct hlsl_ir_node *block_instr, *block_next;
+ struct hlsl_block block;
+
+ if (!(offset = hlsl_new_offset_from_path_index(ctx, &block, type, offset, deref->path[i].node, &instr->loc)))
+ return;
+
+ LIST_FOR_EACH_ENTRY_SAFE(block_instr, block_next, &block.instrs, struct hlsl_ir_node, entry)
+ {
+ list_remove(&block_instr->entry);
+ list_add_before(&instr->entry, &block_instr->entry);
+ }
+
+ type = hlsl_get_type_from_path_index(ctx, type, deref->path[i].node);
+ }
+
+ hlsl_free_deref(deref);
+ hlsl_src_from_node(&deref->offset, offset);
+}
+
+/* TODO: remove when no longer needed. */
+static bool transform_deref_paths_into_offsets(struct hlsl_ctx *ctx, struct hlsl_ir_node *instr, void *context)
+{
+ switch(instr->type)
+ {
+ case HLSL_IR_LOAD:
+ {
+ replace_deref_path_with_offset(ctx, &hlsl_ir_load(instr)->src, instr);
+ return true;
+ }
+
+ case HLSL_IR_STORE:
+ {
+ replace_deref_path_with_offset(ctx, &hlsl_ir_store(instr)->lhs, instr);
+ return true;
+ }
+
+ case HLSL_IR_RESOURCE_LOAD:
+ {
+ replace_deref_path_with_offset(ctx, &hlsl_ir_resource_load(instr)->resource, instr);
+ replace_deref_path_with_offset(ctx, &hlsl_ir_resource_load(instr)->sampler, instr);
+ return true;
+ }
+
+ default:
+ return false;
+ }
+ return false;
+}
+
/* Split uniforms into two variables representing the constant and temp
* registers, and copy the former to the latter, so that writes to uniforms
* work. */
@@ -1890,6 +1959,8 @@ int hlsl_emit_bytecode(struct hlsl_ctx *ctx, struct hlsl_ir_function_decl *entry
list_move_head(&body->instrs, &ctx->static_initializers);
+ transform_ir(ctx, transform_deref_paths_into_offsets, body, NULL); /* TODO: move forward, remove when no longer needed */
+
LIST_FOR_EACH_ENTRY(var, &ctx->globals->vars, struct hlsl_ir_var, scope_entry)
{
if (var->modifiers & HLSL_STORAGE_UNIFORM)
--
2.34.1
3
4
[PATCH vkd3d 12/12] vkd3d-shader/hlsl: Replace register offsets with index paths in split copies.
by Francisco Casas 08 Jul '22
by Francisco Casas 08 Jul '22
08 Jul '22
hlsl_new_store() and hlsl_new_load() are deleted, so now there are no more
direct ways to create derefs with offsets in hlsl.c and hlsl.h.
Signed-off-by: Francisco Casas <fcasas(a)codeweavers.com>
---
libs/vkd3d-shader/hlsl.c | 32 -------------------------
libs/vkd3d-shader/hlsl.h | 4 ----
libs/vkd3d-shader/hlsl_codegen.c | 40 +++++++++-----------------------
3 files changed, 11 insertions(+), 65 deletions(-)
diff --git a/libs/vkd3d-shader/hlsl.c b/libs/vkd3d-shader/hlsl.c
index 3454e5ee..fdf023f1 100644
--- a/libs/vkd3d-shader/hlsl.c
+++ b/libs/vkd3d-shader/hlsl.c
@@ -744,25 +744,6 @@ static struct hlsl_type *get_type_from_deref(struct hlsl_ctx *ctx, const struct
return type;
}
-struct hlsl_ir_store *hlsl_new_store(struct hlsl_ctx *ctx, struct hlsl_ir_var *var, struct hlsl_ir_node *offset,
- struct hlsl_ir_node *rhs, unsigned int writemask, struct vkd3d_shader_location loc)
-{
- struct hlsl_ir_store *store;
-
- if (!writemask && type_is_single_reg(rhs->data_type))
- writemask = (1 << rhs->data_type->dimx) - 1;
-
- if (!(store = hlsl_alloc(ctx, sizeof(*store))))
- return NULL;
-
- init_node(&store->node, HLSL_IR_STORE, NULL, loc);
- init_deref(ctx, &store->lhs, var, 0);
- hlsl_src_from_node(&store->lhs.offset, offset);
- hlsl_src_from_node(&store->rhs, rhs);
- store->writemask = writemask;
- return store;
-}
-
/* Returns a simple variable derefence, so that the value can be stored and then passed by reference
* to load/store functions. It shall not be modified afterwards. */
struct hlsl_deref hlsl_get_direct_var_deref(struct hlsl_ir_var *var)
@@ -948,19 +929,6 @@ struct hlsl_ir_if *hlsl_new_if(struct hlsl_ctx *ctx, struct hlsl_ir_node *condit
return iff;
}
-struct hlsl_ir_load *hlsl_new_load(struct hlsl_ctx *ctx, struct hlsl_ir_var *var, struct hlsl_ir_node *offset,
- struct hlsl_type *type, const struct vkd3d_shader_location loc)
-{
- struct hlsl_ir_load *load;
-
- if (!(load = hlsl_alloc(ctx, sizeof(*load))))
- return NULL;
- init_node(&load->node, HLSL_IR_LOAD, type, loc);
- init_deref(ctx, &load->src, var, 0);
- hlsl_src_from_node(&load->src.offset, offset);
- return load;
-}
-
struct hlsl_ir_load *hlsl_new_load_index(struct hlsl_ctx *ctx, const struct hlsl_deref *deref,
struct hlsl_ir_node *idx, struct vkd3d_shader_location loc)
{
diff --git a/libs/vkd3d-shader/hlsl.h b/libs/vkd3d-shader/hlsl.h
index dd5ea1d7..efb186cf 100644
--- a/libs/vkd3d-shader/hlsl.h
+++ b/libs/vkd3d-shader/hlsl.h
@@ -774,11 +774,7 @@ struct hlsl_ir_resource_load *hlsl_new_resource_load(struct hlsl_ctx *ctx, struc
enum hlsl_resource_load_type type, struct hlsl_deref *resource, struct hlsl_deref *sampler,
struct hlsl_ir_node *coords, struct hlsl_ir_node *texel_offset, const struct vkd3d_shader_location *loc);
-struct hlsl_ir_load *hlsl_new_load(struct hlsl_ctx *ctx, struct hlsl_ir_var *var, struct hlsl_ir_node *offset,
- struct hlsl_type *type, struct vkd3d_shader_location loc);
struct hlsl_ir_loop *hlsl_new_loop(struct hlsl_ctx *ctx, struct vkd3d_shader_location loc);
-struct hlsl_ir_store *hlsl_new_store(struct hlsl_ctx *ctx, struct hlsl_ir_var *var, struct hlsl_ir_node *offset,
- struct hlsl_ir_node *rhs, unsigned int writemask, struct vkd3d_shader_location loc);
struct hlsl_type *hlsl_new_struct_type(struct hlsl_ctx *ctx, const char *name,
struct hlsl_struct_field *fields, size_t field_count);
struct hlsl_ir_swizzle *hlsl_new_swizzle(struct hlsl_ctx *ctx, DWORD s, unsigned int components,
diff --git a/libs/vkd3d-shader/hlsl_codegen.c b/libs/vkd3d-shader/hlsl_codegen.c
index 0276fb89..2c7b5f20 100644
--- a/libs/vkd3d-shader/hlsl_codegen.c
+++ b/libs/vkd3d-shader/hlsl_codegen.c
@@ -946,39 +946,21 @@ static bool fold_redundant_casts(struct hlsl_ctx *ctx, struct hlsl_ir_node *inst
* split_matrix_copies(). Inserts new instructions right before
* "store". */
static bool split_copy(struct hlsl_ctx *ctx, struct hlsl_ir_store *store,
- const struct hlsl_ir_load *load, const unsigned int offset, struct hlsl_type *type)
+ const struct hlsl_ir_load *load, const unsigned int indx, struct hlsl_type *type)
{
- struct hlsl_ir_node *offset_instr, *add;
struct hlsl_ir_store *split_store;
struct hlsl_ir_load *split_load;
struct hlsl_ir_constant *c;
- if (!(c = hlsl_new_uint_constant(ctx, offset, &store->node.loc)))
+ if (!(c = hlsl_new_uint_constant(ctx, indx, &store->node.loc)))
return false;
list_add_before(&store->node.entry, &c->node.entry);
- offset_instr = &c->node;
- if (load->src.offset.node)
- {
- if (!(add = hlsl_new_binary_expr(ctx, HLSL_OP2_ADD, load->src.offset.node, &c->node)))
- return false;
- list_add_before(&store->node.entry, &add->entry);
- offset_instr = add;
- }
- if (!(split_load = hlsl_new_load(ctx, load->src.var, offset_instr, type, store->node.loc)))
+ if (!(split_load = hlsl_new_load_index(ctx, &load->src, &c->node, store->node.loc)))
return false;
list_add_before(&store->node.entry, &split_load->node.entry);
- offset_instr = &c->node;
- if (store->lhs.offset.node)
- {
- if (!(add = hlsl_new_binary_expr(ctx, HLSL_OP2_ADD, store->lhs.offset.node, &c->node)))
- return false;
- list_add_before(&store->node.entry, &add->entry);
- offset_instr = add;
- }
-
- if (!(split_store = hlsl_new_store(ctx, store->lhs.var, offset_instr, &split_load->node, 0, store->node.loc)))
+ if (!(split_store = hlsl_new_store_index(ctx, &store->lhs, &c->node, &split_load->node, 0, store->node.loc)))
return false;
list_add_before(&store->node.entry, &split_store->node.entry);
@@ -990,8 +972,8 @@ static bool split_array_copies(struct hlsl_ctx *ctx, struct hlsl_ir_node *instr,
const struct hlsl_ir_node *rhs;
struct hlsl_type *element_type;
const struct hlsl_type *type;
- unsigned int element_size, i;
struct hlsl_ir_store *store;
+ unsigned int i;
if (instr->type != HLSL_IR_STORE)
return false;
@@ -1002,7 +984,6 @@ static bool split_array_copies(struct hlsl_ctx *ctx, struct hlsl_ir_node *instr,
if (type->type != HLSL_CLASS_ARRAY)
return false;
element_type = type->e.array.type;
- element_size = hlsl_type_get_array_element_reg_size(element_type);
if (rhs->type != HLSL_IR_LOAD)
{
@@ -1012,7 +993,7 @@ static bool split_array_copies(struct hlsl_ctx *ctx, struct hlsl_ir_node *instr,
for (i = 0; i < type->e.array.elements_count; ++i)
{
- if (!split_copy(ctx, store, hlsl_ir_load(rhs), i * element_size, element_type))
+ if (!split_copy(ctx, store, hlsl_ir_load(rhs), i, element_type))
return false;
}
@@ -1050,7 +1031,7 @@ static bool split_struct_copies(struct hlsl_ctx *ctx, struct hlsl_ir_node *instr
{
const struct hlsl_struct_field *field = &type->e.record.fields[i];
- if (!split_copy(ctx, store, hlsl_ir_load(rhs), field->reg_offset, field->type))
+ if (!split_copy(ctx, store, hlsl_ir_load(rhs), i, field->type))
return false;
}
@@ -1088,7 +1069,7 @@ static bool split_matrix_copies(struct hlsl_ctx *ctx, struct hlsl_ir_node *instr
for (i = 0; i < hlsl_type_major_size(type); ++i)
{
- if (!split_copy(ctx, store, hlsl_ir_load(rhs), 4 * i, element_type))
+ if (!split_copy(ctx, store, hlsl_ir_load(rhs), i, element_type))
return false;
}
@@ -2102,8 +2083,6 @@ int hlsl_emit_bytecode(struct hlsl_ctx *ctx, struct hlsl_ir_function_decl *entry
append_output_var_copy(ctx, &body->instrs, entry_func->return_var);
}
- transform_ir(ctx, transform_deref_paths_into_offsets, body, NULL); /* TODO: move forward, remove when no longer needed */
-
transform_ir(ctx, lower_broadcasts, body, NULL);
while (transform_ir(ctx, fold_redundant_casts, body, NULL));
do
@@ -2113,6 +2092,9 @@ int hlsl_emit_bytecode(struct hlsl_ctx *ctx, struct hlsl_ir_function_decl *entry
}
while (progress);
transform_ir(ctx, split_matrix_copies, body, NULL);
+
+ transform_ir(ctx, transform_deref_paths_into_offsets, body, NULL); /* TODO: move forward, remove when no longer needed */
+
transform_ir(ctx, lower_narrowing_casts, body, NULL);
transform_ir(ctx, lower_casts_to_bool, body, NULL);
do
--
2.34.1
2
1
[PATCH vkd3d 10/12] vkd3d-shader/hlsl: Add input and output variables using the same function.
by Francisco Casas 08 Jul '22
by Francisco Casas 08 Jul '22
08 Jul '22
Signed-off-by: Francisco Casas <fcasas(a)codeweavers.com>
---
libs/vkd3d-shader/hlsl_codegen.c | 81 +++++++++++++++-----------------
1 file changed, 37 insertions(+), 44 deletions(-)
diff --git a/libs/vkd3d-shader/hlsl_codegen.c b/libs/vkd3d-shader/hlsl_codegen.c
index 67229195..07c11f3f 100644
--- a/libs/vkd3d-shader/hlsl_codegen.c
+++ b/libs/vkd3d-shader/hlsl_codegen.c
@@ -204,11 +204,44 @@ static void prepend_uniform_copy(struct hlsl_ctx *ctx, struct list *instrs, stru
list_add_after(&load->node.entry, &store->node.entry);
}
+static struct hlsl_ir_var *add_extern_var(struct hlsl_ctx *ctx, struct hlsl_ir_var *var,
+ struct hlsl_type *type, unsigned int modifiers, const struct hlsl_semantic *semantic, bool output)
+{
+ struct hlsl_semantic new_semantic;
+ struct vkd3d_string_buffer *name;
+ struct hlsl_ir_var *ext_var;
+
+ if (!(name = hlsl_get_string_buffer(ctx)))
+ return NULL;
+ vkd3d_string_buffer_printf(name, "<%s-%s%u>", output? "output" : "input", semantic->name, semantic->index);
+ if (!(new_semantic.name = hlsl_strdup(ctx, semantic->name)))
+ {
+ hlsl_release_string_buffer(ctx, name);
+ return NULL;
+ }
+ new_semantic.index = semantic->index;
+ if (!(ext_var = hlsl_new_var(ctx, hlsl_strdup(ctx, name->buffer),
+ type, var->loc, &new_semantic, modifiers, NULL)))
+ {
+ hlsl_release_string_buffer(ctx, name);
+ vkd3d_free((void *)new_semantic.name);
+ return NULL;
+ }
+ hlsl_release_string_buffer(ctx, name);
+ if (output)
+ ext_var->is_output_semantic = 1;
+ else
+ ext_var->is_input_semantic = 1;
+ ext_var->is_param = var->is_param;
+ list_add_before(&var->scope_entry, &ext_var->scope_entry);
+ list_add_tail(&ctx->extern_vars, &ext_var->extern_entry);
+
+ return ext_var;
+}
+
static void prepend_input_copy(struct hlsl_ctx *ctx, struct list *instrs, struct hlsl_ir_var *var,
struct hlsl_type *type, unsigned int field_offset, unsigned int modifiers, const struct hlsl_semantic *semantic)
{
- struct vkd3d_string_buffer *name;
- struct hlsl_semantic new_semantic;
struct hlsl_ir_constant *offset;
struct hlsl_ir_store *store;
struct hlsl_ir_load *load;
@@ -229,27 +262,8 @@ static void prepend_input_copy(struct hlsl_ctx *ctx, struct list *instrs, struct
return;
}
- if (!(name = hlsl_get_string_buffer(ctx)))
+ if (!(input = add_extern_var(ctx, var, type, modifiers, semantic, false)))
return;
- vkd3d_string_buffer_printf(name, "<input-%s%u>", semantic->name, semantic->index);
- if (!(new_semantic.name = hlsl_strdup(ctx, semantic->name)))
- {
- hlsl_release_string_buffer(ctx, name);
- return;
- }
- new_semantic.index = semantic->index;
- if (!(input = hlsl_new_var(ctx, hlsl_strdup(ctx, name->buffer),
- type, var->loc, &new_semantic, modifiers, NULL)))
- {
- hlsl_release_string_buffer(ctx, name);
- vkd3d_free((void *)new_semantic.name);
- return;
- }
- hlsl_release_string_buffer(ctx, name);
- input->is_input_semantic = 1;
- input->is_param = var->is_param;
- list_add_before(&var->scope_entry, &input->scope_entry);
- list_add_tail(&ctx->extern_vars, &input->extern_entry);
if (!(load = hlsl_new_var_load(ctx, input, var->loc)))
return;
@@ -297,8 +311,6 @@ static void prepend_input_var_copy(struct hlsl_ctx *ctx, struct list *instrs, st
static void append_output_copy(struct hlsl_ctx *ctx, struct list *instrs, struct hlsl_ir_var *var,
struct hlsl_type *type, unsigned int field_offset, unsigned int modifiers, const struct hlsl_semantic *semantic)
{
- struct vkd3d_string_buffer *name;
- struct hlsl_semantic new_semantic;
struct hlsl_ir_constant *offset;
struct hlsl_ir_store *store;
struct hlsl_ir_var *output;
@@ -319,27 +331,8 @@ static void append_output_copy(struct hlsl_ctx *ctx, struct list *instrs, struct
return;
}
- if (!(name = hlsl_get_string_buffer(ctx)))
+ if (!(output = add_extern_var(ctx, var, type, modifiers, semantic, true)))
return;
- vkd3d_string_buffer_printf(name, "<output-%s%u>", semantic->name, semantic->index);
- if (!(new_semantic.name = hlsl_strdup(ctx, semantic->name)))
- {
- hlsl_release_string_buffer(ctx, name);
- return;
- }
- new_semantic.index = semantic->index;
- if (!(output = hlsl_new_var(ctx, hlsl_strdup(ctx, name->buffer),
- type, var->loc, &new_semantic, modifiers, NULL)))
- {
- vkd3d_free((void *)new_semantic.name);
- hlsl_release_string_buffer(ctx, name);
- return;
- }
- hlsl_release_string_buffer(ctx, name);
- output->is_output_semantic = 1;
- output->is_param = var->is_param;
- list_add_before(&var->scope_entry, &output->scope_entry);
- list_add_tail(&ctx->extern_vars, &output->extern_entry);
if (!(offset = hlsl_new_uint_constant(ctx, field_offset, &var->loc)))
return;
--
2.34.1
2
1
Re: [PATCH 1/1] crypt32: Recognize 'Microsoft Root Certificate Authority 2011' when verifying the Microsoft root policy.
by Marvin 08 Jul '22
by Marvin 08 Jul '22
08 Jul '22
Hi,
It looks like your patch introduced the new failures shown below.
Please investigate and fix them before resubmitting your patch.
If they are not new, fixing them anyway would help a lot. Otherwise
please ask for the known failures list to be updated.
The full results can be found at:
https://testbot.winehq.org/JobDetails.pl?Key=118594
Your paranoid android.
=== debian11 (32 bit report) ===
crypt32:
chain.c:5006: Test failed: msRootPolicyCheck[3](#0007): expected 800b0109, got 00000000
=== debian11 (32 bit Chinese:China report) ===
crypt32:
chain.c:5006: Test failed: msRootPolicyCheck[3](#0007): expected 800b0109, got 00000000
=== debian11 (32 bit WoW report) ===
crypt32:
chain.c:5006: Test failed: msRootPolicyCheck[3](#0007): expected 800b0109, got 00000000
=== debian11 (64 bit WoW report) ===
crypt32:
chain.c:5006: Test failed: msRootPolicyCheck[3](#0007): expected 800b0109, got 00000000
1
0
[tools] testbot/web: Clearly identify unused variables in the reset password page.
by Francois Gouget 08 Jul '22
by Francois Gouget 08 Jul '22
08 Jul '22
This also avoids shadowing the $User variable.
Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com>
---
testbot/web/ResetPassword.pl | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/testbot/web/ResetPassword.pl b/testbot/web/ResetPassword.pl
index 65dcdd539d..b6c0ae9cb5 100644
--- a/testbot/web/ResetPassword.pl
+++ b/testbot/web/ResetPassword.pl
@@ -118,8 +118,8 @@ sub OnChangePassword($)
return !1;
}
- ($ErrMessage, my $User) = $Users->Authenticate($self->GetParam("Name"),
- $self->GetParam("Password1"));
+ ($ErrMessage, my $_User) = $Users->Authenticate($self->GetParam("Name"),
+ $self->GetParam("Password1"));
if (defined $ErrMessage)
{
$self->AddError($ErrMessage, "Name");
@@ -127,8 +127,7 @@ sub OnChangePassword($)
}
my $Sessions = CreateSessions();
- ($ErrMessage, my $Session) = $Sessions->NewSession($User,
- defined($self->GetParam("AutoLogin")));
+ ($ErrMessage, my $_Session) = $Sessions->NewSession($User, defined $self->GetParam("AutoLogin"));
if ($ErrMessage)
{
$self->AddError($ErrMessage, "Name");
--
2.30.2
1
0
[tools] testbot/web: Add links to the first and last new untracked failures.
by Francois Gouget 08 Jul '22
by Francois Gouget 08 Jul '22
08 Jul '22
Signed-off-by: Francois Gouget <fgouget(a)codeweavers.com>
---
testbot/web/JobDetails.pl | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/testbot/web/JobDetails.pl b/testbot/web/JobDetails.pl
index 3fbdb427e6..321d025e72 100644
--- a/testbot/web/JobDetails.pl
+++ b/testbot/web/JobDetails.pl
@@ -437,8 +437,13 @@ sub GenerateFullLog($$$$$)
}
}
}
- $LogBugs{-1} ||= [$LineNo, ""];
- $LogBugs{9999999} = [$LineNo, ""];
+ $LogBugs{-2} ||= [$LineNo, "First failure"];
+ if ($ErrCategory{$LineNo} eq "fullnew" and !$ErrFailures{$LineNo})
+ {
+ $LogBugs{-1} ||= [$LineNo, "First untracked new failure"];
+ $LogBugs{10000000} = [$LineNo, "Last untracked new failure"];
+ }
+ $LogBugs{10000001} = [$LineNo, "Last failure"];
}
}
if (%LogBugs)
@@ -447,7 +452,11 @@ sub GenerateFullLog($$$$$)
foreach my $Label (sort { $a <=> $b } keys %LogBugs)
{
my ($LineNo, $Title) = @{$LogBugs{$Label}};
- $Label = $Label < 0 ? "First" : $Label == 9999999 ? "Last" : $Label;
+ $Label = $Label == -2 ? "First" :
+ $Label == -1 ? "new" :
+ $Label == 10000000 ? "new" :
+ $Label == 10000001 ? "Last" :
+ $Label;
$Title = " title='". $self->escapeHTML($Title) ."'" if ($Title);
print " <a href='#k${LogId}L$LineNo'$Title>$Label</a>"
}
--
2.30.2
1
0
Re: [PATCH 3/3] winegstreamer: Check H264 ProcessOutput sample against actual image size.
by Marvin 08 Jul '22
by Marvin 08 Jul '22
08 Jul '22
Hi,
It looks like your patch introduced the new failures shown below.
Please investigate and fix them before resubmitting your patch.
If they are not new, fixing them anyway would help a lot. Otherwise
please ask for the known failures list to be updated.
The full results can be found at:
https://testbot.winehq.org/JobDetails.pl?Key=118553
Your paranoid android.
=== w864 (32 bit report) ===
mf:
04b0:mf: unhandled exception c0000005 at 0042ACE3
=== w1064v1507 (32 bit report) ===
mf:
0da8:mf: unhandled exception c0000005 at 0042ACE3
=== w1064v1809 (32 bit report) ===
mf:
1da0:mf: unhandled exception c0000005 at 0042ACE3
=== w1064 (32 bit report) ===
mf:
1c6c:mf: unhandled exception c0000005 at 0042ACE3
=== w1064_tsign (32 bit report) ===
mf:
0ea4:mf: unhandled exception c0000005 at 0042ACE3
=== w10pro64 (32 bit report) ===
mf:
1e00:mf: unhandled exception c0000005 at 0042ACE3
1
0
[PATCH 0/3] MR395: win32u: Move reading and writing mode from registry out of graphics drivers.
by Rémi Bernon 08 Jul '22
by Rémi Bernon 08 Jul '22
08 Jul '22
What was initially in https://gitlab.winehq.org/wine/wine/-/merge_requests/355, with the test failures hopefully fixed.
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/395
3
8